Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
guidance_h.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_H_H
28 #define GUIDANCE_H_H
29 
30 
31 #include "math/pprz_algebra_int.h"
33 
35 #include "generated/airframe.h"
36 #include "std.h"
37 
41 #ifndef GUIDANCE_H_USE_REF
42 #define GUIDANCE_H_USE_REF TRUE
43 #endif
44 
49 #ifndef GUIDANCE_H_USE_SPEED_REF
50 #define GUIDANCE_H_USE_SPEED_REF TRUE
51 #endif
52 
53 #define GUIDANCE_H_MODE_KILL 0
54 #define GUIDANCE_H_MODE_RATE 1
55 #define GUIDANCE_H_MODE_ATTITUDE 2
56 #define GUIDANCE_H_MODE_HOVER 3
57 #define GUIDANCE_H_MODE_NAV 4
58 #define GUIDANCE_H_MODE_RC_DIRECT 5
59 #define GUIDANCE_H_MODE_CARE_FREE 6
60 #define GUIDANCE_H_MODE_FORWARD 7
61 #define GUIDANCE_H_MODE_MODULE 8
62 #define GUIDANCE_H_MODE_FLIP 9
63 #define GUIDANCE_H_MODE_GUIDED 10
64 
65 
71  struct Int32Vect2 pos;
72  struct Int32Vect2 speed;
73  float heading;
74  float heading_rate;
76 };
77 
79  struct Int32Vect2 pos;
80  struct Int32Vect2 speed;
81  struct Int32Vect2 accel;
82 };
83 
90 };
91 
94  /* configuration options */
95  bool use_ref;
97  /* gains */
99 
102 
104 };
105 
106 extern struct HorizontalGuidance guidance_h;
107 
109 
110 extern void guidance_h_init(void);
111 extern void guidance_h_mode_changed(uint8_t new_mode);
112 extern void guidance_h_read_rc(bool in_flight);
113 extern void guidance_h_run(bool in_flight);
114 
115 extern void guidance_h_hover_enter(void);
116 extern void guidance_h_nav_enter(void);
117 
120 extern void guidance_h_from_nav(bool in_flight);
121 
122 extern void guidance_h_set_igain(uint32_t igain);
123 
126 extern void guidance_h_guided_run(bool in_flight);
127 
133 extern bool guidance_h_set_guided_pos(float x, float y);
134 
139 extern bool guidance_h_set_guided_heading(float heading);
140 
146 extern bool guidance_h_set_guided_body_vel(float vx, float vy);
147 
153 extern bool guidance_h_set_guided_vel(float vx, float vy);
154 
159 extern bool guidance_h_set_guided_heading_rate(float rate);
160 
165 extern const struct Int32Vect2 *guidance_h_get_pos_err(void);
166 
167 /* Make sure that ref can only be temporarily disabled for testing,
168  * but not enabled if GUIDANCE_H_USE_REF was defined to FALSE.
169  */
170 #define guidance_h_SetUseRef(_val) { \
171  guidance_h.use_ref = _val && GUIDANCE_H_USE_REF; \
172  }
173 
174 static inline void guidance_h_SetMaxSpeed(float speed)
175 {
176  gh_set_max_speed(speed);
177 }
178 
179 static inline void guidance_h_SetOmega(float omega)
180 {
181  gh_set_omega(omega);
182 }
183 
184 static inline void guidance_h_SetZeta(float zeta)
185 {
186  gh_set_zeta(zeta);
187 }
188 
189 static inline void guidance_h_SetTau(float tau)
190 {
191  gh_set_tau(tau);
192 }
193 
194 #endif /* GUIDANCE_H_H */
Reference generation for horizontal guidance.
struct Int32Vect2 pos
horizontal position setpoint in NED.
Definition: guidance_h.h:71
bool guidance_h_set_guided_vel(float vx, float vy)
Set horizontal velocity setpoint in GUIDED mode.
Definition: guidance_h.c:727
float gh_set_max_speed(float max_speed)
Set a new maximum speed for waypoint navigation.
void guidance_h_mode_changed(uint8_t new_mode)
Definition: guidance_h.c:212
bool approx_force_by_thrust
Definition: guidance_h.h:96
bool guidance_h_set_guided_pos(float x, float y)
Set horizontal position setpoint in GUIDED mode.
Definition: guidance_h.c:697
static void guidance_h_SetZeta(float zeta)
Definition: guidance_h.h:184
struct HorizontalGuidanceReference ref
reference calculated from setpoints
Definition: guidance_h.h:101
struct HorizontalGuidanceGains gains
Definition: guidance_h.h:98
void guidance_h_set_igain(uint32_t igain)
Definition: guidance_h.c:669
euler angles
bool guidance_h_set_guided_body_vel(float vx, float vy)
Set body relative horizontal velocity setpoint in GUIDED mode.
Definition: guidance_h.c:719
uint8_t mask
bit 5: vx & vy, bit 6: vz, bit 7: vyaw
Definition: guidance_h.h:75
float gh_set_omega(float omega)
static float heading
Definition: ahrs_infrared.c:45
struct Int32Vect2 speed
with INT32_SPEED_FRAC
Definition: guidance_h.h:80
float gh_set_tau(float tau)
static void guidance_h_SetMaxSpeed(float speed)
Definition: guidance_h.h:174
Paparazzi floating point algebra.
struct Int32Vect2 speed
only used in HOVER mode if GUIDANCE_H_USE_SPEED_REF or in GUIDED mode
Definition: guidance_h.h:72
unsigned long uint32_t
Definition: types.h:18
struct HorizontalGuidance guidance_h
Definition: guidance_h.c:80
void guidance_h_run(bool in_flight)
Definition: guidance_h.c:351
signed long int32_t
Definition: types.h:19
void guidance_h_read_rc(bool in_flight)
Definition: guidance_h.c:292
bool guidance_h_set_guided_heading_rate(float rate)
Set heading rate setpoint in GUIDED mode.
Definition: guidance_h.c:738
struct Int32Vect2 pos
with INT32_POS_FRAC
Definition: guidance_h.h:79
unsigned char uint8_t
Definition: types.h:14
void guidance_h_hover_enter(void)
Definition: guidance_h.c:532
void guidance_h_guided_run(bool in_flight)
Run GUIDED mode control.
Definition: guidance_h.c:676
struct Int32Vect2 accel
with INT32_ACCEL_FRAC
Definition: guidance_h.h:81
void guidance_h_init(void)
Definition: guidance_h.c:166
struct FloatEulers rc_sp
Definition: guidance_h.h:103
void guidance_h_nav_enter(void)
Definition: guidance_h.c:555
int32_t transition_percentage
Definition: guidance_h.c:82
float gh_set_zeta(float zeta)
bool guidance_h_set_guided_heading(float heading)
Set heading setpoint in GUIDED mode.
Definition: guidance_h.c:708
const struct Int32Vect2 * guidance_h_get_pos_err(void)
Gets the position error.
Definition: guidance_h.c:748
void guidance_h_from_nav(bool in_flight)
Set horizontal guidance from NAV and run control loop.
Definition: guidance_h.c:569
static void guidance_h_SetTau(float tau)
Definition: guidance_h.h:189
struct HorizontalGuidanceSetpoint sp
setpoints
Definition: guidance_h.h:100
Paparazzi fixed point algebra.
static void guidance_h_SetOmega(float omega)
Definition: guidance_h.h:179