Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
stabilization_none.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2011-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, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
31 
33 #include "generated/airframe.h"
34 #include "generated/modules.h"
35 
37 
39 {
41 }
42 
44 {
45 
49 }
50 
52 {
54 }
55 
56 void stabilization_none_run(bool in_flight __attribute__((unused)))
57 {
58  /* just directly pass rc commands through */
59 #ifdef COMMAND_ROLL
61 #endif
62 #ifdef COMMAND_PITCH
64 #endif
65 #ifdef COMMAND_YAW
67 #endif
68 }
int32_t p
in rad/s with INT32_RATE_FRAC
int32_t r
in rad/s with INT32_RATE_FRAC
int32_t q
in rad/s with INT32_RATE_FRAC
#define INT_RATES_ZERO(_e)
angular rates
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
int32_t stabilization_cmd[COMMANDS_NB]
Stabilization commands.
Definition: stabilization.c:34
General stabilization interface for rotorcrafts.
struct Int32Rates stabilization_none_rc_cmd
void stabilization_none_read_rc(void)
void stabilization_none_enter(void)
void stabilization_none_init(void)
void stabilization_none_run(bool in_flight)
Dummy stabilization for rotorcrafts.
int int32_t
Typedef defining 32 bit int type.
Definition: vl53l1_types.h:83