We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc33f7 commit de403bdCopy full SHA for de403bd
start.sh
@@ -1,14 +1,20 @@
1
#!/bin/bash
2
3
-source /opt/ros/*/setup.bash # this adapter is meant to work with any ROS2 distribution
+# This adapter is meant to work with any ROS2 distribution
4
+source /opt/ros/*/setup.bash
5
+# Optional ROS environment variables
6
+#export ROS_DOMAIN_ID=1
7
+#export ROS_LOCALHOST_ONLY=1
8
+#export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
9
10
if [ -z ${FORMANT_ROS2_WS+x} ]; then
11
echo "FORMANT_ROS2_WS unset"
12
else
13
echo "sourcing $FORMANT_ROS2_WS"
- source $FORMANT_ROS2_WSs
14
+ source $FORMANT_ROS2_WS
15
fi
16
17
+export PYTHONUNBUFFERED=true
18
python3 -m pip install -r requirements.txt
19
cd formant_ros2_adapter/scripts/
-python3 main.py
20
+python3 main.py
0 commit comments