Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
eff_scheduling_generic.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 Ewoud Smeur <ewoud_smeur@msn.com>
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
28#include "generated/airframe.h"
29#include "state.h"
31
32#if STABILIZATION_INDI_ALLOCATION_PSEUDO_INVERSE
33#error "You need to use WLS control allocation for this module"
34#endif
35
36#ifndef INDI_FUNCTIONS_RC_CHANNEL
37#error "You need to define an RC channel to switch between simple and advanced scheduling"
38#endif
39
40#ifdef FWD_G1
42#else
49#endif
50
51#ifdef STABILIZATION_INDI_G1
53#else
60#endif
61
62static float g2_both[INDI_NUM_ACT] = STABILIZATION_INDI_G2; //scaled by INDI_G_SCALING
63
65{
66 //sum of G1 and G2
67 int8_t i;
68 int8_t j;
69 for (i = 0; i < INDI_OUTPUTS; i++) {
70 for (j = 0; j < INDI_NUM_ACT; j++) {
71 if (i != 2) {
74 } else {
77 }
78 }
79 }
80}
81
83{
84 int8_t i;
85 int8_t j;
86 const float ratio = stabilization.transition_ratio;
87 for (i = 0; i < INDI_OUTPUTS; i++) {
88 for (j = 0; j < INDI_NUM_ACT; j++) {
89 g1g2[i][j] = g1g2_hover[i][j] * (1.0 - ratio) + g1g2_forward[i][j] * ratio;
90 }
91 }
92}
93
static float g1g2_hover[INDI_OUTPUTS][INDI_NUM_ACT]
static float g2_both[INDI_NUM_ACT]
void eff_scheduling_generic_periodic(void)
Periodic function that interpolates between gain sets depending on the scheduling variable.
void eff_scheduling_generic_init(void)
Initialises periodic loop;.
static float g1g2_forward[INDI_OUTPUTS][INDI_NUM_ACT]
uint16_t foo
Definition main_demo5.c:58
Generic interface for radio control modules.
Horizontal guidance for rotorcrafts.
struct Stabilization stabilization
float transition_ratio
transition percentage for hybrids (0.: hover; 1.: forward)
float g1g2[INDI_OUTPUTS][INDI_NUM_ACT]
#define INDI_G_SCALING
API to get/set the generic vehicle states.
signed char int8_t
Typedef defining 8 bit char type.