@@ -21,7 +21,7 @@ ros2 run micro_ros_setup create_firmware_ws.sh host
2121Once the command is executed, a folder named ` firmware ` must be present in your workspace.
2222
2323This step is in charge, among other things, of downloading a set of micro-ROS apps for Linux, that are located at
24- ` src/uros/micro-ROS-demos/rcl ` .
24+ ` src/uros/micro-ROS-demos/rclc ` .
2525Each app is represented by a folder containing the following files:
2626
2727* ` main.c ` : This file contains the logic of the application.
@@ -30,14 +30,14 @@ Each app is represented by a folder containing the following files:
3030For the user to create its custom application, a folder ` <my_app> ` will need to be registered in this location,
3131containing the two files just described.
3232Also, any such new application folder needs to be registered in
33- ` src/uros/micro-ROS-demos/rcl /CMakeLists.txt ` by adding the following line:
33+ ` src/uros/micro-ROS-demos/rclc /CMakeLists.txt ` by adding the following line:
3434
3535```
3636export_executable(<my_app>)
3737```
3838
3939In this tutorial, we will focus on the out-of-the-box ` ping_pong ` application located at
40- ` src/uros/micro-ROS-demos/rcl /ping_pong ` .
40+ ` src/uros/micro-ROS-demos/rclc /ping_pong ` .
4141You can check the complete content of this app
4242[ here] ( https://github.com/micro-ROS/micro-ROS-demos/tree/foxy/rclc/ping_pong ) .
4343
0 commit comments