Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
autopilot_generated.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Gautier Hattenberger <gautier.hattenberger@enac.fr>
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 #define AUTOPILOT_CORE_AP_C
28 
30 #include "autopilot.h"
31 
33 #include "modules/core/commands.h"
35 #include "modules/core/settings.h"
37 
38 #include "generated/settings.h"
39 
40 
42 {
43  // call generated init
44  autopilot_core_ap_init();
45  // copy generated mode to public mode (set at startup)
46  autopilot.mode = autopilot_mode_ap;
47 }
48 
49 
51 {
52 
53  autopilot_core_ap_periodic_task();
54 
55  // copy generated mode to public mode (may be changed on internal exceptions)
56  autopilot.mode = autopilot_mode_ap;
57 
58 #if defined MCU_SPI_LINK || defined MCU_UART_LINK || defined MCU_CAN_LINK
59  link_mcu_send();
60 #elif defined INTER_MCU && defined SINGLE_MCU
62  inter_mcu_received_ap = true;
63 #endif
64 
65 }
66 
72 {
74 }
75 
76 
77 void autopilot_generated_set_mode(uint8_t new_autopilot_mode)
78 {
79  autopilot_core_ap_set_mode(new_autopilot_mode);
80  // copy generated mode to public mode
81  autopilot.mode = autopilot_mode_ap;
82 }
83 
84 
86 {
87  // only needed for consistency with other firmwares
88  autopilot.motors_on = motors_on;
89 }
90 
91 
93 {
94 #ifdef SetAutoCommandsFromRC
95  SetAutoCommandsFromRC(commands, radio_control.values);
96 #elif defined RADIO_YAW && defined COMMAND_YAW
97  command_set(COMMAND_YAW, radio_control_get(RADIO_YAW));
98 #endif
99 }
100 
struct pprz_autopilot autopilot
Global autopilot structure.
Definition: autopilot.c:49
Core autopilot interface common to all firmwares.
bool motors_on
motor status
Definition: autopilot.h:68
uint8_t mode
current autopilot mode
Definition: autopilot.h:63
pprz_t commands[COMMANDS_NB]
Definition: commands.c:30
Hardware independent code for commands handling.
void autopilot_generated_SetModeHandler(float mode)
AP mode setting handler.
void autopilot_generated_periodic(void)
void autopilot_generated_set_mode(uint8_t new_autopilot_mode)
void autopilot_generated_init(void)
void autopilot_generated_on_rc_frame(void)
void autopilot_generated_set_motors_on(bool motors_on)
Autopilot generated implementation Calls the code generated from autopilot XML file.
Hardware independent API for actuators (servos, motor controllers).
struct RadioControl radio_control
Definition: radio_control.c:33
Generic interface for radio control modules.
pprz_t values[RADIO_CONTROL_NB_CHANNEL]
Definition: radio_control.h:67
static pprz_t radio_control_get(uint8_t idx)
Get a radio control channel value.
Definition: radio_control.h:94
Persistent settings interface.
static uint8_t mode
mode holds the current sonar mode mode = 0 used at high altitude, uses 16 wave patterns mode = 1 used...
Definition: sonar_bebop.c:69
Periodic telemetry system header (includes downlink utility and generated code).
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98