2023-05-26 20:01:10 +08:00
|
|
|
/** @file
|
2024-08-19 16:16:39 +08:00
|
|
|
* @brief MAVLink comm protocol built from ardupilotmega.xml
|
|
|
|
* @see http://mavlink.org
|
2023-05-26 20:01:10 +08:00
|
|
|
*/
|
2024-08-19 16:16:39 +08:00
|
|
|
#pragma once
|
|
|
|
|
2023-05-26 20:01:10 +08:00
|
|
|
#ifndef MAVLINK_VERSION_H
|
|
|
|
#define MAVLINK_VERSION_H
|
|
|
|
|
2024-08-19 16:16:39 +08:00
|
|
|
#define MAVLINK_BUILD_DATE "Thu Apr 09 2020"
|
2023-05-26 20:01:10 +08:00
|
|
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "1.0"
|
|
|
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 255
|
|
|
|
|
|
|
|
#endif // MAVLINK_VERSION_H
|