File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,27 @@ cd ~/ros2_ws/src
3030git clone -b ros_2 $REPO_URL (HTPPS/SSH)
3131```
3232
33- 2 . Build workspace
33+ 2 . install all ROS dependencies (the warning for ` ament_cmake_clange_format ` can be ignored..)
34+ ``` bash
35+ cd ~ /ros2_ws
36+ # source ROS
37+ . /opt/ros/$INSTALLED_ROS_CONTRIB /setup.bash
38+ # initialize rosdep
39+ sudo rosdep init # only required if not already done for other projects on your system
40+ # update rosdep
41+ rosdep update
42+ # install dependencies
43+ rosdep install --from-paths src --ignore-src -y
44+ ```
45+
46+ 3 . Build your workspace
3447``` bash
3548cd ~ /ros2_ws
3649. /opt/ros/$INSTALLED_ROS_CONTRIB /setup.bash
3750colcon build --symlink-install
3851```
3952
40- 3 . Source workspace and launch
53+ 4 . Source workspace and launch
4154``` bash
4255. install/setup.bash
4356ros2 launch adma_ros2_driver adma_driver.launch.py
You can’t perform that action at this time.
0 commit comments