File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,8 @@ def id(self) -> Optional[str]:
213
213
board_id = boards .MILKV_DUO
214
214
elif chip_id == chips .TH1520 :
215
215
board_id = boards .LICHEEPI_4A
216
+ elif chip_id == chips .RV1103 :
217
+ board_id = self ._rv1103_id ()
216
218
elif chip_id == chips .RV1106 :
217
219
board_id = self ._rv1106_id ()
218
220
self ._board_id = board_id
@@ -806,6 +808,14 @@ def _siemens_simatic_iot2000_id(self) -> Optional[str]:
806
808
board = boards .SIEMENS_SIMATIC_IOT2050_BASIC
807
809
return board
808
810
811
+ def _rv1103_id (self ) -> Optional [str ]:
812
+ """Check what type of rv1103 board."""
813
+ board_value = self .detector .get_device_model ()
814
+ board = None
815
+ if board_value and "Luckfox Pico Mini" in board_value :
816
+ board = boards .LUCKFOX_PICO_MINI
817
+ return board
818
+
809
819
def _rv1106_id (self ) -> Optional [str ]:
810
820
"""Check what type of rv1106 board."""
811
821
board_value = self .detector .get_device_model ()
Original file line number Diff line number Diff line change @@ -248,6 +248,9 @@ def _linux_id(self) -> Optional[str]:
248
248
if self .detector .check_dt_compatible_value ("rockchip,rk3588" ):
249
249
return chips .RK3588
250
250
251
+ if self .detector .check_dt_compatible_value ("rockchip,rv1103" ):
252
+ return chips .RV1103
253
+
251
254
if self .detector .check_dt_compatible_value ("rockchip,rv1106" ):
252
255
return chips .RV1106
253
256
Original file line number Diff line number Diff line change 229
229
230
230
# Luckfox Pico boards
231
231
LUCKFOX_PICO_MAX = "LUCKFOX_PICO_MAX"
232
+ LUCKFOX_PICO_MINI = "LUCKFOX_PICO_MINI"
232
233
233
234
# Asus Tinkerboard
234
235
_ASUS_TINKER_BOARD_IDS = (
587
588
_MILKV_IDS_ = (MILKV_DUO ,)
588
589
589
590
# Luckfox
590
- _LUCKFOX_IDS = (LUCKFOX_PICO_MAX ,)
591
+ _LUCKFOX_IDS = (LUCKFOX_PICO_MAX ,LUCKFOX_PICO_MINI , )
Original file line number Diff line number Diff line change 62
62
RK3566 = "RK3566"
63
63
RK3568 = "RK3568"
64
64
RK3588 = "RK3588"
65
+ RV1103 = "RV1103"
65
66
RV1106 = "RV1106"
66
67
PENTIUM_N3710 = "PENTIUM_N3710" # SOC Braswell core
67
68
CELERON_N5105 = "CELERON_N5105"
You can’t perform that action at this time.
0 commit comments