sudo apt-get install -y python-rosdep python-catkin-tools
-
Create a catkin workspace
mkdir -p ~/create_ws/src
-
Clone this repo
cd ~/create_ws/src git clone https://github.com/RoboticaUtnFrba/create_autonomy.git git clone https://github.com/RoboticaUtnFrba/libcreate.git
-
Install dependencies
I. Install RTIMULib
cd ~/create_ws ./src/create_autonomy/sensors/ca_imu/scripts/install_rtimulib.sh
II. Install other dependencies
cd ~/create_ws sudo apt install -y python3-vcstool vcs import src < src/create_autonomy/dependencies.repos rosdep update rosdep install --from-paths src -yi
-
Build workspace
cd ~/create_ws catkin_make -DCMAKE_BUILD_TYPE=Release
-
In order to connect to Create over USB, ensure your user is in the dialout group
sudo usermod -a -G dialout $USER source ~/create_ws/src/create_autonomy/ca_bringup/scripts/udev/create_rules.sh
-
Logout and login for permission to take effect