Skip to content

Commit 79296be

Browse files
Isaac ROS 4.0
1 parent 2e5129f commit 79296be

File tree

5 files changed

+36
-8
lines changed

5 files changed

+36
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Isaac ROS Jetson simplifies the process of monitoring and managing NVIDIA Jetson
88

99
## What is `jetson-stats`?
1010

11-
[jetson_stats](https://rnext.it/jetson_stats) is a comprehensive utility tool specifically designed for NVIDIA Jetson, including the Jetson Nano, Jetson TX1, TX2, Xavier, and Orin series.
11+
[jetson_stats](https://rnext.it/jetson_stats) is a comprehensive utility tool specifically designed for NVIDIA Jetson, including the Jetson Nano, Jetson TX1, TX2, Xavier, Orin, and Thor series.
1212
It provides a variety of functionalities to monitor and manage the Jetson device’s performance, temperature, power usage, and more.
1313

14-
<div align="center"><a class="reference internal image-reference" href="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/main/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_jetson/jetson_stats.png/"><img alt="image" src="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/main/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_jetson/jetson_stats.png/" width="880px"/></a></div>
14+
<div align="center"><a class="reference internal image-reference" href="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/release-4.0/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_jetson/jetson_stats.png/"><img alt="image" src="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/release-4.0/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_jetson/jetson_stats.png/" width="880px"/></a></div>
1515

1616
## How Does it Work with Isaac ROS?
1717

@@ -38,7 +38,7 @@ Isaac ROS Jetson provides a set of messages to monitor the health of your board
3838

3939
As an illustration, consider a scenario where your board is under high power demand. In such a case, a node that reads the diagnostics message can dynamically adjust the `nvp` power mode or even disable certain nodes that are consuming excessive computational resources. This dynamic power management capability is a key feature of the tool.
4040

41-
Using the `isaac_ros_jetson` package in a Docker container can greatly improve the robustness and reliability of your project. This method ensures a consistent and isolated environment, reducing compatibility issues and making deployment across different platforms easier.
41+
Using the `isaac_ros_jetson` package in the Isaac ROS environment can greatly improve the robustness and reliability of your project. This method ensures a consistent and isolated environment, reducing compatibility issues and making deployment across different platforms easier.
4242

4343
---
4444

@@ -59,4 +59,4 @@ See [Isaac ROS Documentation](https://nvidia-isaac-ros.github.io/repositories_an
5959

6060
## Latest
6161

62-
Update 2024-12-10: Update to be compatible with JetPack 6.1
62+
Update 2025-10-24: Support for ROS 2 Jazzy

SECURITY.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Security
2+
3+
NVIDIA is dedicated to the security and trust of our software products and services, including all source code repositories managed through our organization.
4+
5+
If you need to report a security issue, please use the appropriate contact points outlined below. **Please do not report security vulnerabilities through GitHub.**
6+
7+
## Reporting Potential Security Vulnerability in an NVIDIA Product
8+
9+
To report a potential security vulnerability in any NVIDIA product:
10+
- Web: [Security Vulnerability Submission Form](https://www.nvidia.com/object/submit-security-vulnerability.html)
11+
12+
- We encourage you to use the following PGP key for secure email communication: [NVIDIA public PGP Key for communication](https://www.nvidia.com/en-us/security/pgp-key)
13+
- Please include the following information:
14+
- Product/Driver name and version/branch that contains the vulnerability
15+
- Type of vulnerability (code execution, denial of service, buffer overflow, etc.)
16+
- Instructions to reproduce the vulnerability
17+
- Proof-of-concept or exploit code
18+
- Potential impact of the vulnerability, including how an attacker could exploit the vulnerability
19+
20+
While NVIDIA currently does not have a bug bounty program, we do offer acknowledgement when an externally reported security issue is addressed under our coordinated vulnerability disclosure policy. Please visit our [Product Security Incident Response Team (PSIRT)](https://www.nvidia.com/en-us/security/psirt-policies/) policies page for more information.
21+
22+
## NVIDIA Product Security
23+
24+
For all security-related concerns, please visit NVIDIA's Product Security portal at https://www.nvidia.com/en-us/security

isaac_ros_jetson_stats/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2525
<package format="3">
2626
<name>isaac_ros_jetson_stats</name>
27-
<version>3.2.5</version>
27+
<version>4.0.0</version>
2828
<description>Isaac ROS Jetson. Set of packages to control your jetson from your board</description>
2929
<author email="[email protected]">Raffaello Bonghi</author>
3030
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

isaac_ros_jetson_stats/setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,14 @@
6565
maintainer_email='[email protected]',
6666
description='Isaac ROS Jetson. Set of packages to control your jetson from your board',
6767
license='MIT',
68-
tests_require=['pytest'],
68+
extras_require={
69+
'test': [
70+
'pytest'
71+
]
72+
},
6973
entry_points={
7074
'console_scripts': [
71-
'jtop = isaac_ros_jetson_stats.ros2_jtop_node:main',
75+
'jtop = isaac_ros_jetson_stats.ros2_jtop_node:main',
7276
],
7377
},
7478
cmdclass={

isaac_ros_jetson_stats_services/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2525
<package format="3">
2626
<name>isaac_ros_jetson_stats_services</name>
27-
<version>3.2.5</version>
27+
<version>4.0.0</version>
2828
<description>Interfaces for Isaac ROS Jetson</description>
2929
<author email="[email protected]">Raffaello Bonghi</author>
3030
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

0 commit comments

Comments
 (0)