Auterion / px4-ros2-interface-lib

Library to interface with PX4 from a companion computer using ROS 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PX4 ROS 2 Interface Library

Library to interface with PX4 from a companion computer using ROS 2. It provides some tooling to used to write external modes that are dynamically registered with PX4 and behave the same way as internal ones. A mode can send different types of setpoints, ranging from high-level navigation tasks all the way down to direct actuator controls.

Documentation:

Compatibility with PX4

The library interacts with PX4 by using its uORB messages, and thus requires a matching set of message definitions on the ROS 2 side. Compatibility is only guaranteed if using latest main on the PX4 and px4_ros2/px4_msgs side. This might change in the future.

The library checks for message compatibility on startup when registering a mode. ALL_PX4_ROS2_MESSAGES defines the set of checked messages. If you use other messages, you can check them using:

if (!px4_ros2::messageCompatibilityCheck(node, {{"fmu/in/vehicle_rates_setpoint"}})) {
  throw std::runtime_error("Messages incompatible");
}

Examples

There are code examples under examples/cpp/modes.

Development

For development, install the pre-commit scripts:

pre-commit install

CI

CI runs a number of checks which can be executed locally with the following commands. Make sure you have the ROS workspace sourced.

clang-tidy

./scripts/run-clang-tidy-on-project.sh

Unit tests

You can either run the unit tests through colcon:

colcon test --packages-select px4_ros2_cpp --ctest-args -R unit_tests
colcon test-result --verbose

Or directly from the build directory, which allows to filter by individual tests:

./build/px4_ros2_cpp/px4_ros2_cpp_unit_tests --gtest_filter='xy*'

Linters (code formatting etc)

These run automatically when committing code. To manually run them, use:

pre-commit run -a

About

Library to interface with PX4 from a companion computer using ROS 2

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 91.6%Language:Python 6.2%Language:CMake 1.8%Language:Shell 0.4%