mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 08:58:29 -04:00
2a72c7e730
created using: mavgen.py --lang=C --wire-protocol=1.0 --output=./include/mavlink/v1.0 ./message_definitions/ardupilotmega.xml mavlink repo commit 79cabfe956464c8f745807a6e65062ac3fc09193
13 lines
342 B
C
13 lines
342 B
C
/** @file
|
|
* @brief MAVLink comm protocol built from common.xml
|
|
* @see http://pixhawk.ethz.ch/software/mavlink
|
|
*/
|
|
#ifndef MAVLINK_VERSION_H
|
|
#define MAVLINK_VERSION_H
|
|
|
|
#define MAVLINK_BUILD_DATE "Tue Sep 18 11:41:40 2012"
|
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "1.0"
|
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 101
|
|
|
|
#endif // MAVLINK_VERSION_H
|