Paparazzi UAS  v5.8.2_stable-0-g6260b7c
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
guidance_v.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2009 Antoine Drouin <poinix@gmail.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, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
27 #ifndef GUIDANCE_V_H
28 #define GUIDANCE_V_H
29 
30 #include "std.h"
31 
34 
35 #define GUIDANCE_V_MODE_KILL 0
36 #define GUIDANCE_V_MODE_RC_DIRECT 1
37 #define GUIDANCE_V_MODE_RC_CLIMB 2
38 #define GUIDANCE_V_MODE_CLIMB 3
39 #define GUIDANCE_V_MODE_HOVER 4
40 #define GUIDANCE_V_MODE_NAV 5
41 #define GUIDANCE_V_MODE_MODULE 6
42 #define GUIDANCE_V_MODE_FLIP 7
43 #define GUIDANCE_V_MODE_GUIDED 8
44 
46 
52 
58 
64 
70 
76 
80 
86 
91 extern float guidance_v_nominal_throttle;
92 
96 
97 
99 
100 extern int32_t guidance_v_kp;
101 extern int32_t guidance_v_kd;
102 extern int32_t guidance_v_ki;
103 
104 extern void guidance_v_init(void);
105 extern void guidance_v_read_rc(void);
106 extern void guidance_v_mode_changed(uint8_t new_mode);
107 extern void guidance_v_notify_in_flight(bool_t in_flight);
108 extern void guidance_v_run(bool_t in_flight);
109 
114 extern bool_t guidance_v_set_guided_z(float z);
115 
116 #define guidance_v_SetKi(_val) { \
117  guidance_v_ki = _val; \
118  guidance_v_z_sum_err = 0; \
119  }
120 
121 #endif /* GUIDANCE_V_H */
Adaptation block of the vertical guidance.
int32_t guidance_v_fb_cmd
feed-back command
Definition: guidance_v.c:100
void guidance_v_run(bool_t in_flight)
Definition: guidance_v.c:272
int32_t guidance_v_kd
vertical control D-gain
Definition: guidance_v.c:125
bool_t guidance_v_adapt_throttle_enabled
Use adaptive throttle command estimation.
Definition: guidance_v.c:104
int32_t guidance_v_zdd_ref
vertical acceleration reference in meter/s^2.
Definition: guidance_v.c:122
void guidance_v_read_rc(void)
Definition: guidance_v.c:201
bool_t guidance_v_set_guided_z(float z)
Set z setpoint in GUIDED mode.
Definition: guidance_v.c:453
int32_t guidance_v_z_sp
altitude setpoint in meters (input).
Definition: guidance_v.c:118
uint8_t guidance_v_mode
Definition: guidance_v.c:98
void guidance_v_init(void)
Definition: guidance_v.c:174
int32_t guidance_v_zd_sp
vertical speed setpoint in meter/s (input).
Definition: guidance_v.c:119
void guidance_v_mode_changed(uint8_t new_mode)
Definition: guidance_v.c:223
int32_t guidance_v_z_sum_err
accumulator for I-gain
Definition: guidance_v.c:128
signed long int32_t
Definition: types.h:19
float guidance_v_nominal_throttle
nominal throttle for hover.
Definition: guidance_v.c:103
int32_t guidance_v_zd_ref
vertical speed reference in meter/s.
Definition: guidance_v.c:121
unsigned char uint8_t
Definition: types.h:14
int32_t guidance_v_ff_cmd
feed-forward command
Definition: guidance_v.c:99
Reference generation for vertical guidance.
int32_t guidance_v_delta_t
thrust command.
Definition: guidance_v.c:101
int32_t guidance_v_kp
vertical control P-gain
Definition: guidance_v.c:124
int32_t guidance_v_thrust_coeff
Definition: guidance_v.c:130
void guidance_v_notify_in_flight(bool_t in_flight)
Definition: guidance_v.c:264
int32_t guidance_v_ki
vertical control I-gain
Definition: guidance_v.c:126
int32_t guidance_v_z_ref
altitude reference in meters.
Definition: guidance_v.c:120