mavlink.h 475 Bytes
Newer Older
LM's avatar
LM committed
1
/** @file
lm's avatar
lm committed
2
 *	@brief MAVLink comm protocol built from minimal.xml
LM's avatar
LM committed
3 4 5 6 7
 *	@see http://pixhawk.ethz.ch/software/mavlink
 */
#ifndef MAVLINK_H
#define MAVLINK_H

lm's avatar
lm committed
8
#ifndef MAVLINK_STX
9
#define MAVLINK_STX 85
lm's avatar
lm committed
10 11 12
#endif

#ifndef MAVLINK_ENDIAN
13
#define MAVLINK_ENDIAN MAVLINK_BIG_ENDIAN
lm's avatar
lm committed
14
#endif
lm's avatar
lm committed
15

LM's avatar
LM committed
16
#ifndef MAVLINK_ALIGNED_FIELDS
17
#define MAVLINK_ALIGNED_FIELDS 0
LM's avatar
LM committed
18 19
#endif

lm's avatar
lm committed
20
#ifndef MAVLINK_CRC_EXTRA
21
#define MAVLINK_CRC_EXTRA 0
LM's avatar
LM committed
22
#endif
lm's avatar
lm committed
23 24 25 26 27

#include "version.h"
#include "minimal.h"

#endif // MAVLINK_H