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 565e00b commit e355772Copy full SHA for e355772
adafruit_platformdetect/board.py
@@ -623,6 +623,8 @@ def _rk3588_id(self) -> Optional[str]:
623
board = None
624
if board_value and "LubanCat-4" in board_value:
625
board = boards.LUBANCAT4
626
+ if board_value and "LubanCat-5" in board_value:
627
+ board = boards.LUBANCAT5
628
return board
629
630
def _rock_pi_id(self) -> Optional[str]:
adafruit_platformdetect/constants/boards.py
@@ -119,6 +119,7 @@
119
LUBANCAT1 = "LUBANCAT1"
120
LUBANCAT2 = "LUBANCAT2"
121
LUBANCAT4 = "LUBANCAT4"
122
+LUBANCAT5 = "LUBANCAT5"
123
124
# Various Raspberry Pi models
125
RASPBERRY_PI_B_REV1 = "RASPBERRY_PI_B_REV1"
@@ -309,6 +310,7 @@
309
310
LUBANCAT1,
311
LUBANCAT2,
312
LUBANCAT4,
313
+ LUBANCAT5,
314
)
315
316
# Coral boards
0 commit comments