Skip to content

Commit 635177c

Browse files
authored
Merge pull request #395 from Gautham103/jetson-thor-comptatible
jetson-thor: add compatible string for new thor platform
2 parents 18f3ff6 + 47b6389 commit 635177c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

adafruit_platformdetect/board.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def id(self) -> Optional[str]:
123123
board_id = boards.FTDI_FT4232H
124124
elif chip_id == chips.APQ8016:
125125
board_id = boards.DRAGONBOARD_410C
126-
elif chip_id in (chips.T210, chips.T186, chips.T194, chips.T234):
126+
elif chip_id in (chips.T210, chips.T186, chips.T194, chips.T234, chips.T264):
127127
board_id = self._tegra_id()
128128
elif chip_id == chips.HFU540:
129129
board_id = self._sifive_id()

adafruit_platformdetect/constants/boards.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@
442442
"nvidia,p3971-0050+p3834-0005",
443443
"nvidia,p3971-0080+p3834-0008",
444444
"nvidia,p3971-0089+p3834-0008",
445+
"nvidia,p4071-0000+p3834-0008",
445446
),
446447
),
447448
)

0 commit comments

Comments
 (0)