Skip to content

Commit a66606e

Browse files
authored
Fix folder name rclc (#364)
links were correct, but in the documentation there was still `rcl` folder instead of `rclc`
1 parent a9bc562 commit a66606e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • _docs/tutorials/core/first_application_linux

_docs/tutorials/core/first_application_linux/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ros2 run micro_ros_setup create_firmware_ws.sh host
2121
Once the command is executed, a folder named `firmware` must be present in your workspace.
2222

2323
This 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`.
2525
Each 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:
3030
For the user to create its custom application, a folder `<my_app>` will need to be registered in this location,
3131
containing the two files just described.
3232
Also, 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
```
3636
export_executable(<my_app>)
3737
```
3838

3939
In 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`.
4141
You 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

Comments
 (0)