Skip to content

Commit 6318f78

Browse files
authored
Update to humble (#1004)
1 parent a67de52 commit 6318f78

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/library_generation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
branch: main
2121
- distro: galactic
2222
branch: galactic
23+
- distro: humble
24+
branch: humble
2325
steps:
2426
- uses: actions/checkout@v2
2527
with:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Remember that is possible to use a micro-ROS Agent just with this docker command
6868

6969
```bash
7070
# Serial micro-ROS Agent
71-
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:rolling serial --dev [YOUR BOARD PORT] -v6
71+
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:humble serial --dev [YOUR BOARD PORT] -v6
7272
```
7373
### PlatformIO
7474

@@ -79,14 +79,14 @@ PlatformIO support for this repository has been deprecated in favor of its own b
7979
If you need to add custom packages or types, or customize any internal parameter of the micro-ROS stack, you will need to recompile this library from source code:
8080

8181
```bash
82-
docker pull microros/micro_ros_static_library_builder:rolling
83-
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:rolling
82+
docker pull microros/micro_ros_static_library_builder:humble
83+
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:humble
8484
```
8585

8686
Optionally a specific single target can be built using the `-p <LIBRARY_TARGET>` argument like this:
8787

8888
```bash
89-
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:galactic -p <LIBRARY_TARGET>
89+
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:humble -p <LIBRARY_TARGET>
9090
```
9191

9292
Available targets `LIBRARY_TARGETS` are available on the [top of the extras/library_generation/library_generation.sh file](https://github.com/micro-ROS/micro_ros_arduino/blob/main/extras/library_generation/library_generation.sh#L13-L24)

extras/library_generation/library_generation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ros2 run micro_ros_setup create_firmware_ws.sh generate_lib
4141
pushd firmware/mcu_ws > /dev/null
4242

4343
# Workaround: Copy just tf2_msgs
44-
git clone -b galactic https://github.com/ros2/geometry2
44+
git clone -b humble https://github.com/ros2/geometry2
4545
cp -R geometry2/tf2_msgs ros2/tf2_msgs
4646
rm -rf geometry2
4747

0 commit comments

Comments
 (0)