Skip to main content
BlogNewsTop News

Test-driven development of multi-node Zephyr + micro-ROS solutions with Renode

By April 21, 2022No Comments

This blog originally ran on the Antmicro website. For more blogs and articles like this one, visit https://antmicro.com/blog/.

Antmicro is actively involved in developing advanced applications, which may involve multiple subsystems communicating with each other, variable device configurations and various communication protocols. To handle such solutions, we often use the ROS (Robot Operating System) framework. It allows the developer to wrap the application’s subsystems in separate programs, called nodes. Nodes can communicate with each other in a publisher-subscriber (one-to-one) and client-service (one-to-one) manner. It helps create complex applications in a lean and modular way.

Testing and deploying such modular and especially multi-node systems requires a reliable deployment and testing approach using Continuous Integration pipelines. In this note, we will describe how using our open source Renode framework can help you develop a micro-ROS solution running on top of Zephyr with a robust test-based workflow.

Transition to ROS 2 and micro-ROS

Last year we wrote several notes about practical uses of ROS at Antmicro, including a tracking and detection tester based on ROS 1. In ROS 1, nodes were communicating with each other via TCP connections, and there was a core node responsible for managing the communication and connection of nodes to the system.

ROS 2 is practically a reimplementation of ROS 1, introducing a fully distributed communication between nodes via Ethernet (UDP), UART and other interfaces. It does not have a core node anymore, which with replacement of TCP connection with UDP connection makes this framework more fitting for real-life scenarios, where the connection between nodes in a system can be lossy. Among many new features, the ROS 2 provides a library called micro-ROS, which is meant to introduce ROS features to microcontrollers.

Microcontrollers are omnipresent in robotic systems – they are often used for reading sensory data (temperature or touch sensors) and manipulating the effectors (robotic arms, servos, lights). Micro-ROS allows to implement nodes running in microcontrollers and communicating with other nodes in the system. The data is by default transferred using a UART connection, but you can implement communication over other protocols.

The multi-node capabilities of Renode, and the ability to simulate various connections modes and protocols, make it ideal for testing ROS 2 and micro-ROS based systems.

When developing systems consisting of multiple interconnected nodes running on application processors – running an OS like Linux – and MCUs – based on e.g. Zephyr – communicating with each other using various protocols, lots of things can go wrong. To ensure the system’s correctness and stability, you need tests verifying software running various nodes in separation, different features of the system as a whole, as well as corner cases. Such tests should be reproducible, so if any bug or error occurs, it can be fixed through debugging.

To address the above, we can use Renode to provide a consistent, hardware-less environment for fast development and testing of the systems involving many applications and machines of various types. Without the hardware in the loop, testing with Renode can be also easily deployed in Continuous Integration pipelines.

To showcase how this could be done in a practical environment, we created the Renode micro-ROS demo, a skeleton example for test-driven development of multi-node micro-ROS solutions with Zephyr.

Simulating micro-ROS platforms with Renode

The Renode / micro-ROS demo presented in this note allows us to demonstrate Renode capabilities in micro-ROS development, simulating a complex setup of micro-ROS nodes communicating with the host machine running ROS 2. It is designed to build the firmware and required environment components inside of CI. We will take a sample application, build it and then, using Renode, simulate a platform where said firmware can run and communicate via a simulated UART queue with the host device and its services.

Micro-ROS is a ROS 2 library meant for microcontrollers which usually runs under the control of an RTOS – most notably Zephyr (which we will focus on today), with FreeRTOS also supported. Using an RTOS like Zephyr for hardware abstraction allows the library to accommodate many more platforms, since most hardware-specific code would be handled by the OS. Then, micro-ROS can communicate with the system’s API and interact with it in a standardized way.

The ROS 2 library is compatible with desktop systems and can easily interact with micro-ROS applications,Micro-ROS works on the same principle as ROS 2 – it allows the user to create a topic and publish to it or subscribe to the messages being sent there. One notable difference is that ROS 2 is based on C++ and allows for mixing it with Python, while micro-ROS firmwares are written in C. ROS 2 provides an extensive environment in which the firmware is being built alongside scripts that automate the process to just a couple of commands and the final ROS 2 package is an executable or a Python script to be executed in the context of a broader system. The micro-ROS firmware on the other hand contains both the application and the RTOS in one binary that is meant to be flashed onto whatever device it targets.

In Renode we are able to simulate microcontrollers and sets of interconnected devices – this makes it a perfect development and testing environment for micro-ROS (and ROS 2) solutions. With hardware-in-the-loop testing, it’s hard to efficiently check various configurations and border conditions in an efficient way, especially in non-standard use cases prone to generate conflicts within the firmware. Renode however enables this by letting you implement and parametrize wide-ranging test suites which can be deterministically executed and distributed at scale. This in turn enables things like compatibility charts for different hardware and configurations for micro-ROS on Zephyr, leading to widespread adoption and improved quality and stability of the integration.

The Renode micro-ROS demo

The demo application itself consists of a simple publisher/subscriber pair – the micro-ROS firmware publishes messages to a ROS 2 topic managed by the micro_ros_agent package that can be received either by a second micro-ROS instance or a ROS 2 subscriber application. There is only one firmware type – it takes up both roles of sending information periodically and receiving messages if one arrives. It allows you to test simultaneous execution of the tasks further checking compatibility with Renode. The message type that is being sent is a Float64MultiArray, since it allows for multiple values to be sent at once. In our case, we send a 1×2 array, which contains a device ID used to identify the sender of the message and a message value containing whatever information is to be published.

The firmware has one Renode-specific piece of code that would not run on real hardware and that is reading a Python device address used for randomizing the device ID. It is memory-mapped inside of an unused address space and ensures that the device IDs will be truly random. It can be easily replaced with a rand() call for hardware deployments. The device ID is needed since it is possible to receive your own messages in this system and a simple check will discard them when the sender is known. What is worth noting is that this type of message was meant to be used within C++, which would contain a constructor and an allocator that will automatically adjust the memory allocation while filling up the data section. Since micro-ROS is based on C, all of that processing is manual and prone to errors that are fairly difficult to diagnose with the limited documentation that is available. Execution is controlled in a way that messages are published periodically with the aid of a timer and it is interrupted when data is received from other sources.

Running the demo

The following step-by-step guide will run the demo without running the tests themselves, essentially just publishing messages from the micro-ROS environment into a ROS 2 topic on the host OS.

  1. Clone the repository:git clone https://github.com/antmicro/renode-microros-demo.git cd renode-microros-demo

2. In the cloned directory, run the named Docker container based on the ros:galactic image:docker run --rm -v $(pwd):/data --name renode-microros-demo -it ros:galactic

3. In the Docker container, install the remaining dependencies:

4. Get Renode in the Docker container – the most convenient way is to get the latest portable release, extract it and add the executable to the PATH variable:

5. In the Docker container, go to the directory with the repository and build the solution:

6. In another terminal, connect to the running container using:

7. In the second container shell, run the ROS 2 instance fetching data from the simulated microcontroller

8. In the first container shell, run Renode simulation of the machine running micro-ROS publisher-subscriber:

9. The ROS 2 application in the second container shell and the micro-ROS application running in the first container shell should establish a connection. Upon successful connection, we should observe in the micro-ROS application the following log:

Screenshot of the log in micro-ROS applicationAnd in the ROS 2 application:Screenshot of the log in ROS 2 application

The observed logs demonstrate a working micro-ROS application running in Renode, communicating with the ROS 2 application running in the host system.

Improved testing with Renode

As shown above, this demo provides a vital insight into the compatibility of micro-ROS with both the STM32 platform and Renode simulations in general. Renode’s vast platform support will allow for quick testing on other devices and with the Zephyr dashboard, it will be also possible to check the support for micro-ROS, micro-ROS features and micro-ROS-based applications across various boards. It also serves as a good starting point for integrating multi-device networks for various tasks requiring minor tweaks and revisions without starting the research process from scratch. The base toolkit is provided and should be fairly universal alongside the documented examples provided on the project page and, since it is integrated in CI, restarting the environment-building part after new Renode releases would also check for compatibility in the future, further aiding in development.

Since most micro-ROS applications are based on an RTOS, there are a lot of possibilities to merge the micro-ROS architecture with machine learning on the edge applications. Using TensorFlowLite Micro or uTVM it would be possible to make a distributed system connected via micro-ROS for information gathering and processing right on the device, without requiring a centralized processing server. Aside from that, the integration with ROS 2 would preserve the ability to process the data on central machines with orders of magnitude more processing power, if such a use case is required. If you are interested in building an AI system with quick and automated testing capabilities provided by Renode, be sure to reach out to us at contact@antmicro.com and find out how we can help.

If you have questions, you can contact Antmicro here or feel free to reach out to the community on the Zephyr Discord Channel. 

Zephyr Project