File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def id(self):
120
120
elif chip_id == chips .RK3308 :
121
121
board_id = self ._rock_pi_id ()
122
122
elif chip_id == chips .RK3288 :
123
- board_id = boards .ASUS_TINKER_BOARD
123
+ board_id = boards ._ASUS_TINKER_BOARD
124
124
elif chip_id == chips .RYZEN_V1605B :
125
125
board_id = self ._udoo_id ()
126
126
@@ -331,7 +331,7 @@ def _asus_tinker_board_id(self):
331
331
board_value = self .detector .get_device_model ()
332
332
board = None
333
333
if board_value and "ASUS Tinker Board" in board_value :
334
- board = boards .ASUS_TINKER_BOARD
334
+ board = boards ._ASUS_TINKER_BOARD
335
335
return board
336
336
337
337
@property
Original file line number Diff line number Diff line change 23
23
PYBOARD = "PYBOARD"
24
24
NODEMCU = "NODEMCU"
25
25
GIANT_BOARD = "GIANT_BOARD"
26
- ASUS_TINKER_BOARD = "ASUS_TINKER_BOARD"
26
+ _ASUS_TINKER_BOARD = "ASUS_TINKER_BOARD"
27
27
28
28
# Clockwork Pi boards
29
29
CLOCKWORK_CPI3 = "CLOCKWORK_CPI3"
347
347
_PINE64_DEV_IDS = (PINE64 , PINEBOOK , PINEPHONE )
348
348
349
349
# ASUS Tinker Board
350
- _ASUS_TINKER_BOARD_DEV_IDS = ASUS_TINKER_BOARD
350
+ _ASUS_TINKER_BOARD_DEV_IDS = _ASUS_TINKER_BOARD
351
351
352
352
# UDOO
353
353
_UDOO_BOARD_IDS = {UDOO_BOLT_V8 : ("SC40-2000-0000-C0|C" ,)}
You can’t perform that action at this time.
0 commit comments