2014-11-11 13:35:47 +01:00
|
|
|
/** @file
|
2018-02-23 13:21:07 +08:00
|
|
|
* @brief MAVLink comm protocol built from icarous.xml
|
2016-10-10 10:40:57 +00:00
|
|
|
* @see http://mavlink.org
|
2014-11-11 13:35:47 +01:00
|
|
|
*/
|
2016-10-05 22:52:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2014-11-11 13:35:47 +01:00
|
|
|
#ifndef MAVLINK_VERSION_H
|
|
|
|
|
#define MAVLINK_VERSION_H
|
|
|
|
|
|
2018-05-20 20:55:47 +08:00
|
|
|
#define MAVLINK_BUILD_DATE "Sun May 20 2018"
|
2016-06-24 12:46:48 +02:00
|
|
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "2.0"
|
2017-02-27 16:19:49 +00:00
|
|
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 255
|
2014-11-11 13:35:47 +01:00
|
|
|
|
|
|
|
|
#endif // MAVLINK_VERSION_H
|