Skip to content

Commit

Permalink
Merge branch 'foxy'
Browse files Browse the repository at this point in the history
  • Loading branch information
rbonghi committed Jul 5, 2022
2 parents 980e199 + 95b6730 commit e70a83b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

# Output STL
nanosaur-stl.zip
test.*

# VSCode
.vscode/
Expand Down
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.1</version>
<version>2.0.2</version>
<description>nanosaur support meta package</description>

<maintainer email="raffaello@rnext.it">Raffaello Bonghi</maintainer>
Expand Down
7 changes: 5 additions & 2 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.1'
NANOSAUR_VERSION='2.0.2'

# Variable stored in configuration file
ROS2_PATH='/opt/ros/foxy/setup.bash'
Expand Down Expand Up @@ -730,7 +730,7 @@ installer()
# extract version
local JETSON_L4T_ARRAY=$(echo $JETSON_L4T_STRING | cut -f 1 -d '-')
# Load release and revision
local JETSON_L4T_RELEASE=$(echo $JETSON_L4T_ARRAY | cut -f 1 -d '.')
local JETSON_L4T_RELEASE=$(echo $JETSON_L4T_ARRAY | cut -f1,2 -d '.')
local JETSON_L4T_REVISION=${JETSON_L4T_ARRAY#"$JETSON_L4T_RELEASE."}

if [[ $JETSON_L4T_RELEASE != $NANOSAUR_L4T ]] ; then
Expand All @@ -744,6 +744,7 @@ installer()
local type_developer=""
# Recap installatation
echo "------ Configuration ------"
echo " - ${bold}NVIDIA L4T:${reset} ${green}$JETSON_L4T_RELEASE.$JETSON_L4T_REVISION${reset}"
echo " - ${bold}User:${reset} ${green}$USER${reset} - ${bold}Hostname:${reset} ${green}$HOSTNAME${reset}"
echo " - ${bold}Install on:${reset} ${green}$PLATFORM${reset}"
echo " - ${bold}Developer:${reset} ${green}$developer${reset}"
Expand All @@ -769,6 +770,8 @@ installer()
# Request sudo password
sudo -v

echo "${bold}${green}Install nanosaur on Jetpack L4T $JETSON_L4T_RELEASE.$JETSON_L4T_REVISION ${reset}"

if [ ! -d $NANOSAUR_DATA ] ; then
echo " - ${bold}${green}Make nanosaur folder in $NANOSAUR_DATA${reset}"
# Build nanosaur folder structure
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.1</version>
<version>2.0.2</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.1</version>
<version>2.0.2</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.1</version>
<version>2.0.2</version>
<description>nanosaur basic messages and services</description>

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

0 comments on commit e70a83b

Please sign in to comment.