mavros
- MAVROS – MAVLink extendable communication node for ROS
with proxy for Ground Control Station.
Links
README
MAVROS
MAVLink extendable communication node for ROS2.
ROS API documentation moved to wiki.ros.org.
Features
Communication with autopilot via serial port, UDP or TCP (e.g. PX4 Pro or ArduPilot)
Internal proxy for Ground Control Station (serial, UDP, TCP)
Plugin system for ROS-MAVLink translation
Parameter manipulation tool
Waypoint manipulation tool
PX4Flow support (by mavros_extras)
OFFBOARD mode support
Geographic coordinates conversions.
Limitations
Only for Linux.
This package are dependent on ros-*-mavlink build from mavlink-gbp-release. It exists in ROS package index and usually updates each month.
Connection URL
Connection defined by URL, you can use any supported type for FCU and GCS.
Supported schemas:
Serial:
/path/to/serial/device[:baudrate]
Serial:
serial:///path/to/serial/device[:baudrate][?ids=sysid,compid]
Serial with hardware flow control:
serial-hwfc:///path/to/serial/device[:baudrate][?ids=sysid,compid]
UDP:
udp://[bind_host][:port]@[remote_host[:port]][/?ids=sysid,compid]
UDP broadcast until GCS discovery:
udp-b://[bind_host][:port]@[:port][/?ids=sysid,compid]
UDP broadcast (permanent):
udp-pb://[bind_host][:port]@[:port][/?ids=sysid,compid]
TCP client:
tcp://[server_host][:port][/?ids=sysid,compid]
TCP server:
tcp-l://[bind_host][:port][/?ids=sysid,compid]
Note:
Ids from URL overrides value given by system_id & component_id parameters.
bind_host - default
0.0.0.0
- i.e. IP4 ANYUDP default ports: 14555 @ 14550
UDP remote address updated every time with incoming packet on bind port.
TCP default port: 5760
Coordinate frames
MAVROS does translate Aerospace NED frames, used in FCUs to ROS ENU frames and vice-versa. For translate airframe related data we simply apply rotation 180° about ROLL (X) axis. For local we apply 180° about ROLL (X) and 90° about YAW (Z) axes. Please read documents from issue #473 for additional information.
All the conversions are handled in src/lib/ftf_frame_conversions.cpp
and src/lib/ftf_quaternion_utils.cpp
and tested in test/test_frame_conversions.cpp
and test/test_quaternion_utils.cpp
respectively.
Related issues: #49 (outdated), #216 (outdated), #317 (outdated), #319 (outdated), #321 (outdated), #473. Documents: Frame Conversions, Mavlink coordinate frames.
MAVROS also allows conversion of geodetic and geocentric coordinates through GeographicLib given that:
geographic_msgs
andNatSatFix.msg
require the LLA fields to be filled in WGS-84 datum, meaning that the altitude should be the height above the WGS-84 ellipsoid. For that, a conversion from the height above the geoid (AMSL, considering the egm96 geoid model) to height above the WGS-84 ellipsoid, and vice-versa, is available and used in several plugins;According to ROS REP 105, the
earth
frame should be propagated in ECEF (Earth-Centered, Earth-Fixed) local coordinates. For that, the functionalities of GeographicLib are used in order to allow conversion from geodetic coordinates to geocentric coordinates;The translation from GPS coordinates to local geocentric coordinates require the definition of a local origin on the
map
frame, in ECEF, and calculate the offset to it in ENU. All the conversions are supported by GeographicLib classes and methods and implemented in theglobal_position
plugin.
Composite nodes
See also: https://docs.ros.org/en/foxy/Tutorials/Composition.html
mavros::router::Router
This is router node required to support connections to FCU(s), GCS(es) and UAS nodes. The Router allows you to add/remove endpoints on the fly without node restart.
mavros::uas::UAS
This node is a plugin container which manages all protocol plugins. Each plugin is a subnode to this.
Programs
mavros_node – all-in-one container
That is a preconfigured composite node contaier, which provides similar parameters as ROS1 mavros_node. That container loads Router, UAS and configures them to work together (sets uas_link, etc.).
Main node. Allow disable GCS proxy by setting empty URL.
ros2 run mavros mavros_node --ros-args --params-file params.yaml
Launch Files
XXX TODO! #1564
Launch files are provided for use with common FCUs, in particular Pixhawk:
px4.launch – for use with the PX4 Autopilot (for VTOL, multicopters and planes)
apm.launch – for use with APM flight stacks (e.g., all versions of ArduPlane, ArduCopter, etc)
Examples:
roslaunch mavros px4.launch
roslaunch mavros apm.launch fcu_url:=tcp://localhost gcs_url:=udp://@
Installation
Required dependencies
Most of the ROS dependencies are supported and installed by rosdep
, including external
libraries as Eigen and Boost.
GeographicLib can be installed by apt-get
and it is already included on the
rosdep of MAVROS package. It is also possible to compile it and install it from src but
be advised to have the proper install directories the same as the ones of the apt-get
install, in order to make sure that the FindGeographicLib.cmake
finds the required
shared libraries (libGeographic.so
).
Since GeographicLib requires certain datasets (mainly the geoid dataset) so to fulfill
certain calculations, these need to be installed manually by the user using geographiclib-tools
,
which can be installed by apt-get
in Debian systems. For a quicker procedure, just run
the available script in the “mavros/scripts” folder, install_geographiclib_datasets.sh
.
Note that if you are using an older MAVROS release source install and want to update to a new one, remember to
run rosdep update
before running rosdep install --from-paths ${ROS_WORKSPACE} --ignore-src --rosdistro=${ROSDISTRO}
,
with ROS_WORKSPACE
your src folder of catkin workspace. This will allow updating the rosdep
list
and install the required dependencies when issuing rosdep install
.
:bangbang: The geoid dataset is mandatory to allow the conversion between heights in order to
respect ROS msg API. Not having the dataset available will shutdown the mavros_node
:bangbang:
:heavy_exclamation_mark:Run install_geographiclib_datasets.sh
to install all datasets or
geographiclib-datasets-download egm96_5
(Debian 7, Ubuntu 14.04, 14.10), geographiclib-get-geoids egm96-5
(Debian 8, Fedora 22, Ubuntu 15.04 or later) to install the geoid dataset only:heavy_exclamation_mark:
Binary installation (deb)
ROS repository has binary packages for Ubuntu x86, amd64 (x86_64) and armhf (ARMv7). Kinetic also support Debian Jessie amd64 and arm64 (ARMv8).
Just use apt
for installation:
sudo apt install ros-foxy-mavros
Then install GeographicLib datasets by running the install_geographiclib_datasets.sh
script:
ros2 run mavros install_geographiclib_datasets.sh
# Alternative:
wget https://raw.githubusercontent.com/mavlink/mavros/ros2/mavros/scripts/install_geographiclib_datasets.sh
./install_geographiclib_datasets.sh
Source installation
Use vcs
utility for retrieving sources and colcon
tool for build.
NOTE: The source installation instructions are for the ROS Foxy release.
sudo apt install -y python3-vcstool python3-rosinstall-generator python3-osrf-pycommon
# 1. Create the workspace: unneeded if you already has workspace
mkdir -p ~/ros2_ws/src
cd ~/ros2_ws
# 2. Install MAVLink
# we use the Kinetic reference for all ROS distros as it's not distro-specific and up to date
rosinstall_generator --format repos mavlink | tee /tmp/mavlink.repos
# 3. Install MAVROS: get source (upstream - released)
rosinstall_generator --format repos --upstream mavros | tee -a /tmp/mavros.repos
# alternative: latest source
# rosinstall_generator --format repos --upstream-development mavros | tee -a /tmp/mavros.repos
# For fetching all the dependencies into your ros2_ws, just add '--deps' to the above scripts
# ex: rosinstall_generator --format repos --upstream mavros --deps | tee -a /tmp/mavros.repos
# 4. Create workspace & deps
vcs import src < /tmp/mavlink.repos
vcs import src < /tmp/mavros.repos
rosdep install --from-paths src --ignore-src -y
# 5. Install GeographicLib datasets:
./src/mavros/mavros/scripts/install_geographiclib_datasets.sh
# 6. Build source
colcon build
# 7. Make sure that you use setup.bash or setup.zsh from workspace.
# Else ros2 run can't find nodes from this workspace.
source install/setup.bash
Build error. if you has error with missing mavlink*
then you need fresh mavlink package.
You may update from ros-shadow-fixed (binary installation) or redo script steps 2 & 4.
Note. Since MAVLink 2.0 merged (0.18) all dialects supported by same binary. Unfortunately overlap of v1.0 message ID’s not fully handled, first loaded message forbid further changes. Load order always:
common
ardupilotmega
alphabetical ordered list
…
Note: MAVLINK_DIALECT
not used anymore.
Troubleshooting
Error: serial0: receive: End of file
This issue should have been solve in mavros v0.23.2, it was found to be a Boost.ASIO error and should be fix in release > v1.12.0 ( >Boost 1.66).
Contributing
See CONTRIBUTING.md.
Glossary
GCS — Ground Control Station
FCU — Flight Control Unit (aka FC)
OBC — OnBoard Computer (your odroid or raspberry)
Links
MAVLink – The communication protocol for Drones, used by flight controllers, ground control stations, and peripherals
mavlink_ros – original ROS node (few messages, no proxy)
Pixhawk – Open Standards for drone hardware
PX4 Autopilot – Flight Controller with support for most vehicle types and hardened/tested MAVROS support
ArduPilot – tested autopilot APM:Plane (default command set)
QGroundControl – Ground Control Station for MAVLink autopilots, with tested support for Android, iOS, Mac OS, Linux, and Windows
mavros_extras – extra plugins & node for mavros