ROS 2
Last updated
Last updated
is the newest version of (Robot Operating System), a general purpose robotics library that can be used with the PX4 Autopilot to create powerful drone applications. It captures most of the learnings and features of , improving a number of flaws of the earlier version.
:::warning Tip The PX4 development team highly recommend that you use/migrate to this version of ROS! :::
Communication between ROS 2 and PX4 uses middleware that implements the . This middleware exposes PX4 as ROS 2 messages and types, effectively allowing direct access to PX4 from ROS 2 workflows and nodes. The middleware uses uORB message definitions to generate code to serialise and deserialise the messages heading in and out of PX4. These same message definitions are used in ROS 2 applications to allow the messages to be interpreted.
To use the over XRCE-DDS effectively, you must (at time of writing) have a reasonable understanding of the PX4 internal architecture and conventions, which differ from those used by ROS. In the near term future we plan to provide ROS 2 APIs to abstract PX4 conventions, along with examples demonstrating their use.
The main topics in this section are:
: A PX4-centric overview of ROS 2, covering installation, setup, and how to build ROS 2 applications that communicate with PX4.
:::note ROS 2 is officially supported only on Linux platforms. Ubuntu 20.04 LTS is the official supported distribution. :::
:::note ROS 2 can also connect with PX4 using (instead of XRCE-DDS). This option is supported by the MAVROS project. :::
: PX4 middleware for connecting to ROS 2.