2014-08-10 21:01:07 +02:00
|
|
|
/** @file
|
|
|
|
|
* @brief MAVLink comm protocol built from ualberta.xml
|
2014-09-24 12:51:43 +02:00
|
|
|
* @see http://mavlink.org
|
2014-08-10 21:01:07 +02:00
|
|
|
*/
|
|
|
|
|
#ifndef MAVLINK_H
|
|
|
|
|
#define MAVLINK_H
|
|
|
|
|
|
|
|
|
|
#ifndef MAVLINK_STX
|
|
|
|
|
#define MAVLINK_STX 254
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAVLINK_ENDIAN
|
|
|
|
|
#define MAVLINK_ENDIAN MAVLINK_LITTLE_ENDIAN
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAVLINK_ALIGNED_FIELDS
|
|
|
|
|
#define MAVLINK_ALIGNED_FIELDS 1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef MAVLINK_CRC_EXTRA
|
|
|
|
|
#define MAVLINK_CRC_EXTRA 1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
|
#include "ualberta.h"
|
|
|
|
|
|
|
|
|
|
#endif // MAVLINK_H
|