FreeRTOS (QEMU MPS2-AN385)
Single-node starter on FreeRTOS + lwIP, cross-compiled for Cortex-M3 and booted in QEMU MPS2-AN385. Slirp networking; no host TAP / bridge / sudo. Rust, C, and C++ talkers all live in-tree.
Prereqs.
nros setup qemu-arm-freertosis the single command that prepares your machine for this board. It fetches a prebuilt toolchain set into the shared store at~/.nros/sdk— thearm-none-eabi-gcccross-compiler, the patchedqemu-system-armemulator, and the FreeRTOS kernel + lwIP sources. You do not hand-install a cross-toolchain. The zenoh path DOES need a ROS 2 install for the router (ros2 run rmw_zenoh_cpp rmw_zenohd); the xrce path needs only the Micro-XRCE-DDS agent, whichnros setupinstalls.
Setup
Build the in-tree nros CLI (Phase 218):
./scripts/bootstrap.sh # builds packages/cli/target/release/nros
source ./activate.sh # OR: direnv allow / source ./activate.fish
Then provision the board (--rmw defaults to zenoh; pick xrce
or cyclonedds to match the example you intend to run):
nros setup qemu-arm-freertos --rmw zenoh
This fetches the cross-compiler, the patched qemu-system-arm, and the
FreeRTOS + lwIP sources into ${NROS_HOME:-~/.nros}/sdk (plus the
Micro-XRCE-DDS agent when you pick --rmw xrce). The zenoh router is
NOT installed — it comes from your ROS 2 install (RFC-0075).
Project layout
Each language uses the standard nano-ros canonical example shape —
standalone Cargo (Rust) or CMake (C / C++) project under
examples/qemu-arm-freertos/<lang>/<example>/.
examples/qemu-arm-freertos/
├── rust/talker/ # Cargo package, cross-compile target = thumbv7m-none-eabi
│ ├── Cargo.toml # deps + [package.metadata.nros.deploy.freertos]
│ ├── .cargo/config.toml # target + QEMU runner
│ ├── package.xml
│ ├── generated/ # codegen output — build.rs runs
│ │ # `nros generate-rust` on first
│ │ # `cargo build`; gitignored.
│ └── src/lib.rs # the component class; nros::main! generates the entry
├── c/talker/ # CMake project, add_subdirectory consumption
│ ├── CMakeLists.txt # targets (deploy tuple in package.xml)
│ ├── package.xml
│ └── src/Talker.c
└── cpp/talker/ # CMake C++14 project
├── CMakeLists.txt
├── package.xml
└── src/Talker.cpp
The Rust Cargo.toml pulls the FreeRTOS board crate
(nros-board-mps2-an385-freertos) which wraps the kernel + lwIP +
LAN9118 driver build. The C / C++ CMakeLists.txt follows the
canonical add_subdirectory(<repo-root>) + nano_ros_link_rmw(<target> RMW zenoh) pattern with
NANO_ROS_BOARD = mps2-an385-freertos.
Configure
Deploy config (router locator, domain, RMW) is declared in the build
manifest and baked at compile time — there is no config file on the
device. Verbatim from the in-tree
examples/qemu-arm-freertos/rust/talker/Cargo.toml:
[package.metadata.nros.deploy.freertos]
board = "qemu-mps2-an385"
rmw = "zenoh"
domain_id = 0
locator = "tcp/10.0.2.2:7447"
The C / C++ trees declare the same in their package.xml <export> tuple
(RFC-0048 §4); the connect locator rides the build config
(-DNROS_ENTRY_LOCATOR / the fixture row), not the tuple:
<export>
<build_type>ament_cmake</build_type>
<nano_ros deploy="freertos" board="mps2-an385-freertos" rmw="zenoh"/>
</export>
Task stacks / priorities come from the board crate’s defaults (Cargo features), not a config file — see the Configuration Guide.
The 10.0.2.0/24 subnet is QEMU Slirp’s default; 10.0.2.2 is the
Slirp gateway that forwards to host loopback. No TAP, no sudo.
Ports: the shipped examples dial host port 7447.
Contributors: the prebuilt test fixtures bake different ports — see Per-Platform Contributor Lanes.
Build
# Rust — `nros sync` first, once per checkout location. It writes the
# generated message bindings and the [patch.crates-io] table the leaf's
# .cargo/config.toml includes; without it cargo fails while PARSING the
# manifest, with an error that never names sync (see below).
cd examples/qemu-arm-freertos/rust/talker
nros sync
cargo build --release
# C / C++ — use the cross-toolchain CMake invocation (the `nros` CLI
# on PATH auto-resolves the codegen tool — no `-D_NANO_ROS_CODEGEN_TOOL=`
# needed):
toolchain="$(pwd)/cmake/toolchain/arm-freertos-armcm3.cmake"
cd examples/qemu-arm-freertos/c/talker
cmake -B build -DCMAKE_TOOLCHAIN_FILE="$toolchain" \
-DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel
Contributors: the in-tree fixture build lanes for this platform are in Per-Platform Contributor Lanes.
First Rust build pulls + cross-compiles deps (~5 min). C / C++ build also compiles FreeRTOS kernel + lwIP — first run ~3 min.
If you skipped nros sync, the Rust build stops before it starts, with
failed to load config include '../../../../../nros-patch.toml' and
No such file or directory. That file is generated, not committed —
run nros sync in the leaf and build again. The C / C++ builds above do
not need it; see
Workflow by Platform and Language
for why the requirement is per language rather than per platform.
Run
# 1. Start the router (ROS's `rmw_zenohd`) on the host, on port 7447 —
# the deploy locator the example bakes in its Cargo.toml
# ([package.metadata.nros.deploy.freertos] locator, shown above).
# Slirp forwards guest 10.0.2.2:<p> → host:<p>.
ZENOH_CONFIG_OVERRIDE='listen/endpoints=["tcp/127.0.0.1:7447"];scouting/multicast/enabled=false' \
ros2 run rmw_zenoh_cpp rmw_zenohd &
# 2. Boot the talker in QEMU. The leaf's .cargo/config.toml runner
# wraps qemu-system-arm with the LAN9118 + Slirp wiring:
cd examples/qemu-arm-freertos/rust/talker
cargo run --release
# 3. Verify from stock ROS 2:
source /opt/ros/humble/setup.bash
export RMW_IMPLEMENTATION=rmw_zenoh_cpp
# Talker publishes best-effort; stock `ros2 topic echo` defaults to
# RELIABLE, so the QoS-mismatched echo silently delivers nothing.
# Force best-effort to receive:
ros2 topic echo /chatter std_msgs/msg/String --qos-reliability best_effort
QEMU exits via Ctrl-A x.
Contributors: the in-tree fixture run/test lanes for this platform are in Per-Platform Contributor Lanes.
Readiness signal. Within ~20 seconds of QEMU boot, the talker
should print Publishing: 'Hello World: 1' on its semihosting
stdout — the count starts at 1, matching the official ROS 2 demo
talker. QEMU cold-boot through FreeRTOS init + lwIP DHCP + zenoh
session open typically takes 10–15 s. If no Publishing: line in
30 seconds:
- Confirm the router is running on the host on the port the image
dials (7447 for the copy-out example — Slirp forwards
10.0.2.2:7447→ host:7447). Without it the talker retries the zenoh handshake until QEMU is killed. - Check the talker’s early log for
lwIP DHCP timeoutorFailed to open session. - Bridge tip:
ros2 topic echo /chatterfrom a stock ROS 2 install (withRMW_IMPLEMENTATION=rmw_zenoh_cpp) confirms end-to-end interop. - See Troubleshooting — First 10 Minutes.
GitHub source
Canonical, copy-out:
- Rust:
examples/qemu-arm-freertos/rust/talker/ - C:
examples/qemu-arm-freertos/c/talker/ - C++:
examples/qemu-arm-freertos/cpp/talker/
Next
- Subscriber: peer
listener/directory next to each talker. - Services + actions: peer
service-*/andaction-*/directories. - Real hardware: same code runs on STM32F4-Discovery / NXP-LPC55S69 / TI-MSP432 with a different board crate + linker script; see the Bare-metal Cortex-M3 page for the no-RTOS variant.
- Your own board / RTOS: the Board Integration matrix maps each user profile (Cargo-first, vendor-IDE, Zephyr, ESP-IDF, NuttX, niche fork) to the shortest bring-up path.
- RTOS-specific debugging: FreeRTOS LAN9118 Debugging.