ROS Message definitions used by UT-AMRL projects.
- Clone this repository.
- For ROS1: Add the path to your
~/.bashrcfile for theROS_PACKAGE_PATHenvironment variable:echo "export ROS_PACKAGE_PATH=$(pwd):\$ROS_PACKAGE_PATH" >> ~/.bashrc source ~/.bashrc
- For ROS2: Add the path to your
~/.bashrcfile for theAMENT_PREFIX_PATHenvironment variable:echo "export AMENT_PREFIX_PATH=$(pwd)/install:\$AMENT_PREFIX_PATH" >> ~/.bashrc source ~/.bashrc
- Run
make. This will automatically build and install (for ROS2) or just build (for ROS1). No need to runcatkin_*,rosbuild, etc. - To use the messages from your own project, add
amrl_msgsas a ROS dependency to your project'smanifest.xmlorpackage.xml.