Skip to content

Commit

Permalink
Fix for Jetpack 4.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rbonghi committed Jun 19, 2022
1 parent 8ea9509 commit ffd1f60
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion nanosaur/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>nanosaur</name>
<version>2.0.0</version>
<version>2.0.1</version>
<description>nanosaur support meta package</description>

<maintainer email="raffaello@rnext.it">Raffaello Bonghi</maintainer>
Expand Down
8 changes: 4 additions & 4 deletions nanosaur/scripts/nanosaur
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NANOSAUR_DATA='/opt/nanosaur'
NANOSAUR_VERSION='2.0.0'
NANOSAUR_VERSION='2.0.1'

# Variable stored in configuration file
ROS2_PATH='/opt/ros/foxy/setup.bash'
Expand All @@ -44,7 +44,7 @@ if [ -f $NANOSAUR_DATA/.env ] ; then
fi

# Default variable
NANOSAUR_L4T="32.7.1"
NANOSAUR_L4T="32.7"
ROBOT_NAME='nanosaur'
ROBOT_FILE_PATH=$NANOSAUR_DATA/'param/robot.yml'
NANOSAUR_DEV_WS_PATH=$HOME/$ROS_DEV_WS_NAME
Expand Down Expand Up @@ -733,8 +733,8 @@ installer()
local JETSON_L4T_RELEASE=$(echo $JETSON_L4T_ARRAY | cut -f 1 -d '.')
local JETSON_L4T_REVISION=${JETSON_L4T_ARRAY#"$JETSON_L4T_RELEASE."}

if [[ $JETSON_L4T_RELEASE.$JETSON_L4T_REVISION != $NANOSAUR_L4T ]] ; then
echo "${bold}${red}You cannot install nanosaur on this Jetpack with L4T $JETSON_L4T_RELEASE.$JETSON_L4T_REVISION need L4T $NANOSAUR_L4T ${reset}"
if [[ $JETSON_L4T_RELEASE != $NANOSAUR_L4T ]] ; then
echo "${bold}${red}You cannot install nanosaur on this Jetpack with L4T $JETSON_L4T_RELEASE need L4T $NANOSAUR_L4T ${reset}"
if ! $FORCE ; then
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion nanosaur_control/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>nanosaur_control</name>
<version>2.0.0</version>
<version>2.0.1</version>
<description>Set of launcher to control nanosaur, twist mux, etc...</description>
<author email="raffaello@rnext.it">Raffaello Bonghi</author>
<maintainer email="raffaello@rnext.it">Raffaello Bonghi</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion nanosaur_description/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>nanosaur_description</name>
<version>2.0.0</version>
<version>2.0.1</version>
<description>This package collect nanosaur meshes and urdf</description>
<author email="raffaello@rnext.it">Raffaello Bonghi</author>
<maintainer email="raffaello@rnext.it">Raffaello Bonghi</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion nanosaur_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>nanosaur_msgs</name>
<version>2.0.0</version>
<version>2.0.1</version>
<description>nanosaur basic messages and services</description>

<maintainer email="raffaello@rnext.it">Raffaello Bonghi</maintainer>
Expand Down

0 comments on commit ffd1f60

Please sign in to comment.