You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
347 B
13 lines
347 B
14 years ago
|
/** @file
|
||
13 years ago
|
* @brief MAVLink comm protocol built from matrixpilot.xml
|
||
14 years ago
|
* @see http://pixhawk.ethz.ch/software/mavlink
|
||
|
*/
|
||
|
#ifndef MAVLINK_VERSION_H
|
||
|
#define MAVLINK_VERSION_H
|
||
|
|
||
13 years ago
|
#define MAVLINK_BUILD_DATE "Thu Apr 19 15:39:55 2012"
|
||
14 years ago
|
#define MAVLINK_WIRE_PROTOCOL_VERSION "1.0"
|
||
|
#define MAVLINK_MAX_DIALECT_PAYLOAD_SIZE 101
|
||
14 years ago
|
|
||
14 years ago
|
#endif // MAVLINK_VERSION_H
|