MAVLink is a very lightweight messaging protocol for communicating with drones (and between onboard drone components).
MAVLink follows a modern hybrid publish-subscribe and point-to-point design pattern: Data streams are sent / published as topics while configuration sub-protocols such as the mission protocol or parameter protocol are point-to-point with retransmission.
Messages are defined within XML files. Each XML file defines the message set supported by a particular MAVLink system, also referred to as a "dialect". The reference message set that is implemented by most ground control stations and autopilots is defined in common.xml (most dialects build on top of this definition).
Code generators create software libraries for specific programming languages from these XML message definitions, which can then be used by drones, ground control stations, and other MAVLink systems to communicate. The generated libraries are typically MIT-licensed, and can therefore be used without limits in any closed-source application without publishing the source code of the closed-source application.
Note The C reference implementation is a header-only library that is highly optimized for resource-constrained systems with limited RAM and flash memory. It is field-proven and deployed in many products where it serves as interoperability interface between components of different manufacturers.
MAVLink was first released early 2009 by Lorenz Meier and has now a significant number of contributors.
- Very efficient. MAVLink 1 has just 8 bytes overhead per packet, including start sign and packet drop detection. MAVLink 2 has just 14 bytes of overhead (but is a much more secure and extensible protocol). Because MAVLink doesn't require any additional framing it is very well suited for applications with very limited communication bandwidth.
- Very reliable. MAVLink has been used since 2009 to communicate between many different vehicles, ground stations (and other nodes) over varied and challenging communication channels (high latency/noise). It provides methods for detecting packet drops, corruption, and for packet authentication.
- Many different programming languages can be used, running on numerous microcontrollers/operating systems (including ARM7, ATMega, dsPic, STM32 and Windows, Linux, MacOS, Android and iOS).
- Allows up to 255 concurrent systems on the network (vehicles, ground stations, etc.)
- Enables both offboard and onboard communications (e.g. between a GCS and drone, and between drone autopilot and MAVLink enabled drone camera).
The sections below lists MAVLink generators and their associated programming languages.
The MAVLink organisation provides (and supports) the mavgen, mavgenerate and rust-mavlink tools.
Language | Generator | MAVLink v1 | MAVLink 2 | Signing | Notes |
---|---|---|---|---|---|
C | mavgen | ✓ | ✓ | ✓ | MAVLink project reference implementation. Generated libraries are also published for both protocol versions. |
C++11 | mavgen | ✓ | ✓ | ✓ | |
Python (2.7+, 3.3+) | mavgen | ✓ | ✓ | ✓ | Python bindings. Library also available on PyPi: pymavlink. |
C# | mavgen | ✓ | ✓ | ||
Objective C | mavgen | ✓ | |||
Java | mavgen | ✓ | ✓ | Dronefleet offers a more idiomatic generated library | |
JavaScript (Stable) | mavgen | ✓ | ✓ | ✗ | Old mavgen JavaScript binding (has known bugs and no test suite). |
JavaScript (NextGen) | mavgen | ✓ | ✓ | ✓ | New mavgen JavaScript library. Full test suite, resulting library produces binary compatible output compared to C bindings. Slightly incompatible with previous version, but not hard to migrate. |
TypeScript/JavaScript | mavgen | ✓ | ✓ | ✗ | TypeScript classes which can be used with node-mavlink. |
Lua | mavgen | ✓ | ✓ | ✗ | Lua library. Does not support zero trimming of MAVLink 2 messages. |
WLua (Wireshark Lua bindings) | mavgen | ✓ | ✓ | NA | Allow MAVLink-aware packet inspection in Wireshark. Generated lua scripts should be copied to the Wireshark plugin directory (e.g. wireshark/plugins/mavlink.lua). |
Swift | mavgen | ✓ | |||
Rust | rust-mavlink | ✓ | ✓ | Rust MAVLink generated code. Has tests and docs. | |
Ada | mavgen | ✓ |
The following generators are delivered by independent projects (and supported by those projects).
Language | Generator | MAVLink v1 | MAVLink 2 | Signing | Notes |
---|---|---|---|---|---|
C | fastMavlink | ✓ | ✓ | ✗ | Highly efficient C library with python code generators. Has docs, examples, test, support for routing and mavgen mimicry. |
Clojure | clj-mavlink | ✓ | ✓ | ✓ | Clojure MAVLink Bindings. |
Dart | dart_mavlink | ✓ | ✓ | ✗ | MAVLink library for Dart. |
Go | gomavlib | ✓ | ✓ | ✓ | Go library with support for MAVLink 1, 2 and signing, test suite, and documentation |
Go | go-mavlink1 | ✓ | ✗ | ✗ | Golang MAVLink v1 |
Haskell | HaskMavlink | ✗ | ✓ | ✗ | |
Java | dronefleet/mavlink | ✓ | ✓ | ✓ | Idiomatic Java SDK/API for MAVLink. Provides a gradle plugin for the code generator. |
TypeScript/JavaScript/npm | node-mavlink | ✓ | ✓ | ✓ | TypeScript code generator for data classes with tools to receive and send messages. Getting started guide and inline JSDoc, along with some examples. |
Kotlin | mavlink-kotlin | ✓ | ✓ | ✓ | Uses codegen instead of reflection for performance with Coroutines, RxJava2 and RxJava3 support. Provides a code generator Gradle plugin. |
C MAVLink Source Files (only) are auto-generated for the latest versions of all message specifications/dialects (for both MAVLink 1 and 2):
- c_library_v2 (MAVLink 2)
- c_library_v1 (MAVLink 1)
Using C Libraries explains how to use these libraries.
The Support topic contains information about the mailing list, reporting bugs/issues, and joining the dev call.
The Contributing Guide explains the contribution model and the main areas where you can help.
The message definition XML files and the generated C-language version of MAVLink (a header-only library) are made available under the MIT-licence. MAVLink can therefore be used in any closed-source application without publishing the source code of the closed-source application. See the COPYING file for more information.
The MAVLink generator toolchain is licensed under the terms of the Lesser General Public License (version 3) of the Free Software Foundation (LGPLv3).
This documentation is licensed under CC BY 4.0 (Human readable overview | LICENSE).
The MAVLink protocol is hosted under the governance of the Dronecode Project.