We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73551a1 + 00d3aa9 commit c5e0798Copy full SHA for c5e0798
adafruit_platformdetect/board.py
@@ -36,6 +36,7 @@
36
ORANGE_PI_ONE = "ORANGE_PI_ONE"
37
ORANGE_PI_LITE = "ORANGE_PI_LITE"
38
ORANGE_PI_PC_PLUS = "ORANGE_PI_PC_PLUS"
39
+ORANGE_PI_PLUS_2E = "ORANGE_PI_PLUS_2E"
40
41
# NVIDIA Jetson boards
42
JETSON_TX1 = 'JETSON_TX1'
@@ -93,7 +94,8 @@
93
94
ORANGE_PI_ZERO,
95
ORANGE_PI_ONE,
96
ORANGE_PI_LITE,
- ORANGE_PI_LITE
97
+ ORANGE_PI_PC_PLUS,
98
+ ORANGE_PI_PLUS_2E,
99
)
100
101
_CORAL_IDS = (
@@ -462,6 +464,8 @@ def _armbian_id(self):
462
464
return ORANGE_PI_ONE
463
465
if board_value == "orangepilite":
466
return ORANGE_PI_LITE
467
+ if board_value == "orangepiplus2e":
468
+ return ORANGE_PI_PLUS_2E
469
if board_value == "orangepipcplus":
470
return ORANGE_PI_PC_PLUS
471
if board_value == "pinebook-a64":
0 commit comments