APM:Libraries
protocols.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define MAX_OVERLOAD_COUNT 10
4 #define MAX_FROZEN_COUNT 10
5 
6 extern union UU msgbuf;
7 
8 
9 #pragma GCC diagnostic push
10 #pragma GCC diagnostic ignored "-Wcast-align"
11 
12 
13 
14 union UU {
15  mavlink_message_t m;
16 
17  byte bytes[0x40]; // for font uploading
18 } msgbuf;
19 
20 
21 #include "protocols/MAVLink.h"
22 
23 #pragma GCC diagnostic pop
24 
25 
26 
27 
28 
mavlink_message_t m
Definition: protocols.h:15
Definition: protocols.h:14
union UU msgbuf
uint8_t byte
Definition: compat.h:8
byte bytes[0x40]
Definition: protocols.h:17