Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ Robert Wilbrandt <robert@stamm-wilbrandt.de>

Boston Engineering
Connor Lansdale <clansdale@boston-engineering.com>

yurekami <yurekami@users.noreply.github.com>
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,19 @@ colcon build
source install/local_setup.bash
```

If you are building inside a minimal Docker image such as `ros:jazzy-ros-core-noble`,
refresh the APT package index in the same `RUN` step before invoking `rosdep install`.
The official ROS images clear `/var/lib/apt/lists/*`, so skipping `apt-get update`
can make `rosdep` fail when it tries to install system packages such as
`libcurl4-openssl-dev`.

```dockerfile
RUN apt-get update && \
. /opt/ros/$ROS_DISTRO/setup.sh && \
rosdep update && \
rosdep install --from-paths src --ignore-src -y
```

Once the package is built, the firmware scripts are ready to run.

You can find tutorials for moving your first steps with micro-ROS on an RTOS in the [micro-ROS webpage](https://micro-ros.github.io/docs/tutorials/core/first_application_rtos/).
Expand Down