Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1702 - 1
/** @file
2
 *      @brief MAVLink comm protocol built from ardupilotmega.xml
3
 *      @see http://pixhawk.ethz.ch/software/mavlink
4
 */
5
#ifndef MAVLINK_H
6
#define MAVLINK_H
7
 
8
#ifndef MAVLINK_STX
9
#define MAVLINK_STX 85
10
#endif
11
 
12
#ifndef MAVLINK_ENDIAN
13
#define MAVLINK_ENDIAN MAVLINK_BIG_ENDIAN
14
#endif
15
 
16
#ifndef MAVLINK_ALIGNED_FIELDS
17
#define MAVLINK_ALIGNED_FIELDS 0
18
#endif
19
 
20
#ifndef MAVLINK_CRC_EXTRA
21
#define MAVLINK_CRC_EXTRA 0
22
#endif
23
 
24
#include "version.h"
25
#include "ardupilotmega.h"
26
 
27
#endif // MAVLINK_H