File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 31
31
JETSON_TX1 = 'JETSON_TX1'
32
32
JETSON_TX2 = 'JETSON_TX2'
33
33
JETSON_XAVIER = 'JETSON_XAVIER'
34
- JETSON_TXX = 'JETSON_TXX '
34
+ JETSON_NANO = 'JETSON_NANO '
35
35
36
36
RASPBERRY_PI_B_REV1 = "RASPBERRY_PI_B_REV1"
37
37
RASPBERRY_PI_B_REV2 = "RASPBERRY_PI_B_REV2"
58
58
JETSON_TX1 ,
59
59
JETSON_TX2 ,
60
60
JETSON_XAVIER ,
61
- JETSON_TXX
61
+ JETSON_NANO
62
62
)
63
63
64
64
_RASPBERRY_PI_40_PIN_IDS = (
@@ -341,8 +341,8 @@ def _tegra_id(self):
341
341
return JETSON_TX2
342
342
elif 'xavier' in board_value :
343
343
return JETSON_XAVIER
344
- elif 'txx ' in board_value :
345
- return JETSON_TXX
344
+ elif 'nano ' in board_value :
345
+ return JETSON_NANO
346
346
return None
347
347
348
348
@property
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def _linux_id(self):
83
83
84
84
compatible = self .detector .get_device_compatible ()
85
85
if compatible and 'tegra' in compatible :
86
- if 'cv' in compatible or 'txx ' in compatible :
86
+ if 'cv' in compatible or 'nano ' in compatible :
87
87
linux_id = T210
88
88
elif 'quill' in compatible :
89
89
linux_id = T186
You can’t perform that action at this time.
0 commit comments