File tree Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Expand file tree Collapse file tree 4 files changed +19
-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
@@ -808,6 +810,14 @@ def _siemens_simatic_iot2000_id(self) -> Optional[str]:
808
810
board = boards .SIEMENS_SIMATIC_IOT2050_BASIC
809
811
return board
810
812
813
+ def _rv1103_id (self ) -> Optional [str ]:
814
+ """Check what type of rv1103 board."""
815
+ board_value = self .detector .get_device_model ()
816
+ board = None
817
+ if board_value and "Luckfox Pico Mini" in board_value :
818
+ board = boards .LUCKFOX_PICO_MINI
819
+ return board
820
+
811
821
def _rv1106_id (self ) -> Optional [str ]:
812
822
"""Check what type of rv1106 board."""
813
823
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 230
230
231
231
# Luckfox Pico boards
232
232
LUCKFOX_PICO_MAX = "LUCKFOX_PICO_MAX"
233
+ LUCKFOX_PICO_MINI = "LUCKFOX_PICO_MINI"
233
234
234
235
# Asus Tinkerboard
235
236
_ASUS_TINKER_BOARD_IDS = (
591
592
_MILKV_IDS_ = (MILKV_DUO ,)
592
593
593
594
# Luckfox
594
- _LUCKFOX_IDS = (LUCKFOX_PICO_MAX ,)
595
+ _LUCKFOX_IDS = (
596
+ LUCKFOX_PICO_MAX ,
597
+ LUCKFOX_PICO_MINI ,
598
+ )
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