Skip to content

Commit 8341794

Browse files
committed
Merge branch 'hkp_jetson_thor' into 'master'
Add support For Jetson Thor Reference SKU80/SKU89 See merge request lhoang/jetson-gpio!5
2 parents 3dc548c + 8d64d96 commit 8341794

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
jetson-gpio (2.1.11-0ubuntu1) noble; urgency=medium
3+
4+
* Support Jetson Thor Reference SKU80
5+
* Support Jetson Thor Reference SKU89
6+
7+
-- Hiteshkumar Patel <hiteshkumarg@nvidia.com> Sun, 11 May 2025 9:51:00 -0700
8+
29
jetson-gpio (2.1.10-0ubuntu1) noble; urgency=medium
310

411
* Support Jetson Thor Reference

lib/python/Jetson/GPIO/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from .gpio import *
2-
VERSION = '2.1.10'
2+
VERSION = '2.1.11'

lib/python/Jetson/GPIO/gpio_pin_data.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
JETSON_ORIN_NANO='JETSON_ORIN_NANO'
3434
JETSON_THOR_REFERENCE='JETSON_THOR_REFERENCE'
3535

36-
JETSON_MODELS = [JETSON_TX1, JETSON_TX2, CLARA_AGX_XAVIER, JETSON_TX2_NX, JETSON_XAVIER, JETSON_NANO, JETSON_NX, JETSON_ORIN, JETSON_ORIN_NX, JETSON_ORIN_NANO]
36+
JETSON_MODELS = [JETSON_TX1, JETSON_TX2, CLARA_AGX_XAVIER, JETSON_TX2_NX, JETSON_XAVIER, JETSON_NANO, JETSON_NX, JETSON_ORIN, JETSON_ORIN_NX, JETSON_ORIN_NANO, JETSON_THOR_REFERENCE]
3737

3838
# These arrays contain tuples of all the relevant GPIO data for each Jetson
3939
# Platform. The fields are:
@@ -387,6 +387,8 @@
387387

388388
compats_jetson_thor_reference = (
389389
'nvidia,p3971-0050+p3834-0005',
390+
'nvidia,p3971-0080+p3834-0008',
391+
'nvidia,p3971-0089+p3834-0008',
390392
)
391393

392394

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
'Topic :: System :: Hardware']
3030

3131
setup(name = 'Jetson.GPIO',
32-
version = '2.1.10',
32+
version = '2.1.11',
3333
author = 'NVIDIA',
3434
author_email = 'linux-tegra-bugs@nvidia.com',
3535
description = 'A module to control Jetson GPIO channels',

0 commit comments

Comments
 (0)