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.
2 parents 32fcd6c + 2051282 commit ae239bdCopy full SHA for ae239bd
adafruit_platformdetect/board.py
@@ -403,13 +403,13 @@ def _tegra_id(self):
403
"""Try to detect the id of aarch64 board."""
404
board_value = self.detector.get_device_model()
405
board = None
406
- if 'tx1' in board_value:
+ if 'tx1' in board_value.lower():
407
board = JETSON_TX1
408
- elif 'quill' in board_value:
+ elif 'quill' in board_value or "storm" in board_value or "lightning" in board_value:
409
board = JETSON_TX2
410
- elif 'xavier' in board_value:
+ elif 'xavier' in board_value.lower():
411
board = JETSON_XAVIER
412
- elif 'nano' in board_value or "Nano" in board_value:
+ elif 'nano' in board_value.lower():
413
board = JETSON_NANO
414
return board
415
0 commit comments