Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
link_mcu_can.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010-2012 The Paparazzi Team
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
27 #ifndef LINK_MCU_CAN_H
28 #define LINK_MCU_CAN_H
29 
30 #include <inttypes.h>
31 #include "inter_mcu.h"
32 
33 struct link_mcu_msg {
34  union {
35  struct fbw_state from_fbw;
36  struct ap_state from_ap;
37  } payload;
38 };
39 
42 
43 extern bool link_mcu_received;
44 
45 extern void link_mcu_send(void);
46 extern void link_mcu_init(void);
47 extern void link_mcu_event_task(void);
48 extern void link_mcu_periodic_task(void);
49 
50 
51 #endif /* LINK_MCU_CAN_H */
inter_mcu.h
fbw_state
struct fbw_state * fbw_state
Definition: inter_mcu.c:36
ap_state
struct ap_state * ap_state
Definition: inter_mcu.c:37
inttypes.h