Skip to content

Commit 9a32720

Browse files
author
Gautham Srinivasan
committed
add t264 chip id for jetson thor
1 parent ba31c3c commit 9a32720

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

adafruit_platformdetect/chip.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,8 @@ def _linux_id(self) -> Optional[str]:
386386
linux_id = chips.T194
387387
elif "nvidia,tegra234" in compats:
388388
linux_id = chips.T234
389+
elif "nvidia,tegra264" in compats:
390+
linux_id = chips.T264
389391
if compatible and "imx8m" in compatible:
390392
linux_id = chips.IMX8MX
391393
if compatible and "odroid-c2" in compatible:

adafruit_platformdetect/constants/chips.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
T186 = "T186"
3535
T194 = "T194"
3636
T234 = "T234"
37+
T264 = "T264"
3738
APQ8016 = "APQ8016"
3839
GENERIC_X86 = "GENERIC_X86"
3940
FT232H = "FT232H"

0 commit comments

Comments
 (0)