2016-08-02 12:16:40 +00:00
|
|
|
/** @file
|
2016-10-10 10:40:57 +00:00
|
|
|
* @brief MAVLink comm protocol built from uAvionix.xml
|
|
|
|
|
* @see http://mavlink.org
|
2016-08-02 12:16:40 +00:00
|
|
|
*/
|
2016-10-05 22:52:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2016-08-02 12:16:40 +00:00
|
|
|
#ifndef MAVLINK_VERSION_H
|
|
|
|
|
#define MAVLINK_VERSION_H
|
|
|
|
|
|
2018-12-11 03:02:32 +08:00
|
|
|
#define MAVLINK_BUILD_DATE "Tue Dec 11 2018"
|
2016-08-02 12:16:40 +00:00
|
|
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "2.0"
|
2017-09-12 16:00:53 +08:00
|
|
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 255
|
2016-08-02 12:16:40 +00:00
|
|
|
|
|
|
|
|
#endif // MAVLINK_VERSION_H
|