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.
1 parent 6d44d27 commit fb5cadeCopy full SHA for fb5cade
adafruit_platformdetect/board.py
@@ -646,7 +646,7 @@ def _rk3568_id(self) -> Optional[str]:
646
if board_value and "ROCK3 Model A" in board_value:
647
board = boards.ROCK_PI_3A
648
if board_value and "ROCK 3 Model B" in board_value:
649
- board = boards.ROCK_PI_3B
+ board = boards.ROCK_3B
650
if board_value and "Hardkernel ODROID-M1" in board_value:
651
board = boards.ODROID_M1
652
return board
adafruit_platformdetect/constants/boards.py
@@ -208,7 +208,7 @@
208
RADXA_CM3 = "RADXA_CM3"
209
210
ROCK_PI_3A = "ROCK_PI_3A"
211
-ROCK_PI_3B = "ROCK_PI_3B"
+ROCK_3B = "ROCK_3B"
212
ROCK_PI_3C = "ROCK_PI_3C"
213
ROCK_PI_S = "ROCK_PI_S"
214
ROCK_PI_4 = "ROCK_PI_4"
@@ -602,7 +602,7 @@
602
ROCK_PI_5C,
603
RADXA_CM3,
604
ROCK_PI_3A,
605
- ROCK_PI_3B,
+ ROCK_3B,
606
ROCK_PI_3C,
607
)
608
0 commit comments