Paparazzi UAS  v6.2.0_stable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
navigation.h
Go to the documentation of this file.
1 /*
2 * Copyright (C) 2008-2011 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 
28 #ifndef NAVIGATION_H
29 #define NAVIGATION_H
30 
31 #include "std.h"
32 #include "math/pprz_geodetic_int.h"
33 
34 #include "modules/nav/waypoints.h"
36 #include "autopilot.h"
37 
39 #ifndef CARROT
40 #define CARROT 0
41 #endif
42 
44 #ifndef NAVIGATION_FREQUENCY
45 #if PERIODIC_FREQUENCY == 512
46 #define NAVIGATION_FREQUENCY 16
47 #else // if not 512, assume a multiple of 20 (e.g. 200, 500, 1000, ...)
48 #define NAVIGATION_FREQUENCY 20
49 #endif
50 #endif
51 
52 extern struct EnuCoor_i navigation_target;
53 extern struct EnuCoor_i navigation_carrot;
54 
55 extern uint8_t last_wp __attribute__((unused));
56 
58 
60 #define HORIZONTAL_MODE_WAYPOINT 0
61 #define HORIZONTAL_MODE_ROUTE 1
62 #define HORIZONTAL_MODE_CIRCLE 2
63 #define HORIZONTAL_MODE_ATTITUDE 3
64 #define HORIZONTAL_MODE_MANUAL 4
65 #define HORIZONTAL_MODE_GUIDED 5
67 extern int32_t nav_heading;
69 extern float nav_radius;
71 
74 
75 extern bool nav_survey_active;
76 
77 extern uint8_t vertical_mode;
78 extern uint32_t nav_throttle;
80 extern float flight_altitude;
81 #define VERTICAL_MODE_MANUAL 0
82 #define VERTICAL_MODE_CLIMB 1
83 #define VERTICAL_MODE_ALT 2
84 #define VERTICAL_MODE_GUIDED 3
85 
86 extern float dist2_to_home;
87 extern bool too_far_from_home;
88 extern float failsafe_mode_dist2;
89 
90 extern float dist2_to_wp;
91 
92 extern bool exception_flag[10];
93 
94 
95 /*****************************************************************
96  * macros to ensure compatibility between fixedwing and rotorcraft
97  *****************************************************************/
98 
100 #define GetPosX() (stateGetPositionEnu_f()->x)
102 #define GetPosY() (stateGetPositionEnu_f()->y)
104 #define GetPosAlt() (stateGetPositionEnu_f()->z+state.ned_origin_f.hmsl)
106 #define GetPosHeight() (stateGetPositionEnu_f()->z)
113 #define GetAltRef() (state.ned_origin_f.hmsl)
114 
115 
117 #define NormCourse(x) { \
118  while (x < 0) x += 360; \
119  while (x >= 360) x -= 360; \
120  }
121 
122 extern void nav_init(void);
123 extern void nav_run(void);
124 extern void nav_parse_BLOCK(uint8_t *buf);
125 extern void nav_parse_MOVE_WP(uint8_t *buf);
126 
127 extern void set_exception_flag(uint8_t flag_num);
128 
129 extern bool force_forward;
130 
131 extern float get_dist2_to_waypoint(uint8_t wp_id);
132 extern float get_dist2_to_point(struct EnuCoor_i *p);
133 extern void compute_dist2_to_home(void);
134 extern void nav_home(void);
135 extern void nav_set_manual(int32_t roll, int32_t pitch, int32_t yaw);
136 
137 extern void nav_reset_reference(void) __attribute__((unused));
138 extern void nav_reset_alt(void) __attribute__((unused));
139 extern void nav_periodic_task(void);
140 
141 extern bool nav_is_in_flight(void);
142 
143 extern void nav_set_heading_rad(float rad);
144 extern void nav_set_heading_deg(float deg);
145 extern void nav_set_heading_towards(float x, float y);
147 extern void nav_set_heading_towards_target(void);
148 extern void nav_set_heading_current(void);
149 extern void nav_set_failsafe(void);
150 
151 /* ground detection */
152 extern bool nav_detect_ground(void);
153 #define NavStartDetectGround() ({ autopilot.detect_ground_once = true; false; })
154 #define NavDetectGround() nav_detect_ground()
155 
156 /* switching motors on/off */
157 static inline void NavKillThrottle(void)
158 {
160 }
161 static inline void NavResurrect(void)
162 {
164 }
165 
166 
167 #define NavSetManual nav_set_manual
168 #define NavSetFailsafe nav_set_failsafe
169 
170 
171 #define NavSetGroundReferenceHere nav_reset_reference
172 #define NavSetAltitudeReferenceHere nav_reset_alt
173 
174 #define NavSetWaypointHere waypoint_set_here_2d
175 #define NavCopyWaypoint waypoint_copy
176 #define NavCopyWaypointPositionOnly waypoint_position_copy
177 
178 
180 bool nav_approaching_from(struct EnuCoor_i *wp, struct EnuCoor_i *from, int16_t approaching_time);
181 #define NavApproaching(wp, time) nav_approaching_from(&waypoints[wp].enu_i, NULL, time)
182 #define NavApproachingFrom(wp, from, time) nav_approaching_from(&waypoints[wp].enu_i, &waypoints[from].enu_i, time)
183 
185 bool nav_check_wp_time(struct EnuCoor_i *wp, uint16_t stay_time);
186 #define NavCheckWaypointTime(wp, time) nav_check_wp_time(&waypoints[wp].enu_i, time)
187 
188 
189 /* should we really keep this one ??
190  * maybe better to use the `goto` flight plan primitive and
191  * add a `pre_call` or `call_once` to set the heading?
192  */
193 static inline void NavGotoWaypointHeading(uint8_t wp)
194 {
200 }
201 
202 
203 
204 /***********************************************************
205  * macros used by flight plan to set different modes
206  **********************************************************/
207 
210 #define NavVerticalAutoThrottleMode(_pitch) { \
211  nav_pitch = ANGLE_BFP_OF_REAL(_pitch); \
212  }
213 
216 #define NavVerticalAutoPitchMode(_throttle) {}
217 
220 #define NavVerticalAltitudeMode(_alt, _pre_climb) { \
221  vertical_mode = VERTICAL_MODE_ALT; \
222  nav_altitude = POS_BFP_OF_REAL(_alt); \
223  }
224 
226 #define NavVerticalClimbMode(_climb) { \
227  vertical_mode = VERTICAL_MODE_CLIMB; \
228  nav_climb = SPEED_BFP_OF_REAL(_climb); \
229  }
230 
232 #define NavVerticalThrottleMode(_throttle) { \
233  vertical_mode = VERTICAL_MODE_MANUAL; \
234  nav_throttle = _throttle; \
235  }
236 
238 #define NavHeading nav_set_heading_rad
239 
240 #define NavAttitude(_roll) { \
241  horizontal_mode = HORIZONTAL_MODE_ATTITUDE; \
242  nav_roll = ANGLE_BFP_OF_REAL(_roll); \
243  }
244 
245 
246 
247 /***********************************************************
248  * built in navigation routines
249  **********************************************************/
250 
251 /*********** Navigation to waypoint *************************************/
252 static inline void NavGotoWaypoint(uint8_t wp)
253 {
257 }
258 
259 /*********** Navigation on a circle **************************************/
260 extern void nav_circle(struct EnuCoor_i *wp_center, int32_t radius);
261 static inline void NavCircleWaypoint(uint8_t wp_center, float radius)
262 {
264  nav_circle(&waypoints[wp_center].enu_i, POS_BFP_OF_REAL(radius));
265 }
266 
267 #define NavCircleCount() ((float)abs(nav_circle_radians) / INT32_ANGLE_2_PI)
268 #define NavCircleQdr() ({ int32_t qdr = INT32_DEG_OF_RAD(INT32_ANGLE_PI_2 - nav_circle_qdr) >> INT32_ANGLE_FRAC; NormCourse(qdr); qdr; })
269 
270 #define CloseDegAngles(_c1, _c2) ({ int32_t _diff = _c1 - _c2; NormCourse(_diff); 350 < _diff || _diff < 10; })
271 #define CloseRadAngles(_c1, _c2) ({ float _diff = _c1 - _c2; NormRadAngle(_diff); fabsf(_diff) < 0.0177; })
273 #define NavQdrCloseTo(x) CloseDegAngles(((x) >> INT32_ANGLE_FRAC), NavCircleQdr())
274 #define NavCourseCloseTo(x) {}
275 
276 /*********** Navigation along an oval *************************************/
277 extern void nav_oval_init(void);
278 extern void nav_oval(uint8_t, uint8_t, float);
279 extern uint8_t nav_oval_count;
280 #define Oval(a, b, c) nav_oval((b), (a), (c))
281 
282 /*********** Navigation along a line *************************************/
283 extern void nav_route(struct EnuCoor_i *wp_start, struct EnuCoor_i *wp_end);
284 extern struct FloatVect2 line_vect, to_end_vect;
285 #ifdef GUIDANCE_INDI_HYBRID
286 static inline void NavSegment(uint8_t wp_start, uint8_t wp_end)
287 {
288  VECT2_DIFF(line_vect, waypoints[wp_end].enu_f, waypoints[wp_start].enu_f);
290  VECT3_COPY(navigation_target, waypoints[wp_end].enu_i);
292 }
293 #else
294 static inline void NavSegment(uint8_t wp_start, uint8_t wp_end)
295 {
297  nav_route(&waypoints[wp_start].enu_i, &waypoints[wp_end].enu_i);
298 }
299 #endif
300 
302 static inline void NavGlide(uint8_t start_wp, uint8_t wp)
303 {
304  int32_t start_alt = waypoints[start_wp].enu_i.z;
305  int32_t diff_alt = waypoints[wp].enu_i.z - start_alt;
306  int32_t alt = start_alt + ((diff_alt * nav_leg_progress) / (int32_t)nav_leg_length);
308 }
309 
310 /* follow another aircraft */
311 #define NavFollow nav_follow
312 extern void nav_follow(uint8_t _ac_id, uint32_t distance, uint32_t height);
313 
314 
315 
316 /***********************************************************
317  * settings handlers
318  **********************************************************/
319 #define nav_IncreaseShift(x) {}
320 #define nav_SetNavRadius(x) {}
321 #define navigation_SetFlightAltitude(x) { \
322  flight_altitude = x; \
323  nav_flight_altitude = POS_BFP_OF_REAL(flight_altitude - state.ned_origin_f.hmsl); \
324  }
325 
326 #endif /* NAVIGATION_H */
uint8_t autopilot_get_mode(void)
get autopilot mode
Definition: autopilot.c:216
void autopilot_set_motors_on(bool motors_on)
turn motors on/off, eventually depending of the current mode set kill_throttle accordingly FIXME is i...
Definition: autopilot.c:232
Core autopilot interface common to all firmwares.
Common flight_plan functions shared between fixedwing and rotorcraft.
struct point waypoints[NB_WAYPOINT]
size == nb_waypoint, waypoint 0 is a dummy waypoint
Definition: common_nav.c:39
#define VECT2_DIFF(_c, _a, _b)
Definition: pprz_algebra.h:92
#define VECT3_COPY(_a, _b)
Definition: pprz_algebra.h:140
#define POS_FLOAT_OF_BFP(_ai)
#define POS_BFP_OF_REAL(_af)
int32_t y
North.
int32_t x
East.
vector in East North Up coordinates
static struct EnuCoor_f * stateGetPositionEnu_f(void)
Get position in local ENU coordinates (float).
Definition: state.h:719
static float p[2][2]
Paparazzi fixed point math for geodetic calculations.
#define AP_MODE_NAV
void nav_home(void)
Home mode navigation (circle around HOME)
Definition: nav.c:425
bool force_forward
Definition: navigation.c:84
bool nav_survey_active
Definition: nav.c:91
static void NavGotoWaypoint(uint8_t wp)
Definition: navigation.h:252
float flight_altitude
Dynamically adjustable, reset to nav_altitude when it is changing.
Definition: nav.c:77
void nav_reset_reference(void)
Reset the geographic reference to the current GPS fix.
Definition: navigation.c:382
float nav_descend_vspeed
Definition: navigation.h:70
float dist2_to_wp
squared distance to next waypoint
Definition: navigation.c:94
void nav_set_heading_current(void)
Set heading to the current yaw angle.
Definition: navigation.c:533
uint8_t last_wp
Index of last waypoint.
Definition: nav.c:50
#define HORIZONTAL_MODE_WAYPOINT
Definition: navigation.h:60
void nav_set_manual(int32_t roll, int32_t pitch, int32_t yaw)
Set manual roll, pitch and yaw without stabilization.
Definition: navigation.c:456
void nav_reset_alt(void)
Reset the altitude reference to the current GPS alt.
Definition: navigation.c:389
void nav_circle(struct EnuCoor_i *wp_center, int32_t radius)
Definition: navigation.c:548
#define VERTICAL_MODE_ALT
Definition: navigation.h:83
struct EnuCoor_i navigation_carrot
Definition: navigation.c:97
void nav_set_heading_towards_waypoint(uint8_t wp)
Set heading in the direction of a waypoint.
Definition: navigation.c:520
uint8_t nav_oval_count
Navigation along a figure O.
Definition: nav.c:756
bool too_far_from_home
Definition: navigation.c:92
int32_t nav_leg_progress
Definition: navigation.c:107
bool nav_check_wp_time(struct EnuCoor_i *wp, uint16_t stay_time)
Check the time spent in a radius of 'ARRIVED_AT_WAYPOINT' around a wp
Definition: navigation.c:335
void compute_dist2_to_home(void)
Computes squared distance to the HOME waypoint potentially sets too_far_from_home.
Definition: navigation.c:483
bool nav_is_in_flight(void)
Definition: navigation.c:425
void nav_run(void)
Definition: navigation.c:277
int32_t nav_cmd_pitch
Definition: navigation.h:68
void nav_set_heading_towards(float x, float y)
Set heading to point towards x,y position in local coordinates.
Definition: navigation.c:507
float nav_radius
Definition: nav.c:59
int32_t nav_roll
Definition: navigation.c:112
int32_t nav_circle_radians
Status on the current circle.
Definition: navigation.h:59
void nav_oval(uint8_t, uint8_t, float)
Navigation along a figure O.
Definition: nav.c:764
#define HORIZONTAL_MODE_CIRCLE
Definition: navigation.h:62
int32_t nav_climb
Definition: nav.c:59
#define HORIZONTAL_MODE_ROUTE
Definition: navigation.h:61
void nav_init(void)
Navigation Initialisation.
Definition: nav.c:533
void nav_parse_MOVE_WP(uint8_t *buf)
Definition: navigation.c:237
int32_t nav_flight_altitude
Definition: navigation.h:79
void nav_follow(uint8_t _ac_id, uint32_t distance, uint32_t height)
Definition: navigation.c:748
struct FloatVect2 line_vect to_end_vect
Definition: navigation.c:86
uint32_t nav_leg_length
Definition: navigation.c:108
float nav_climb_vspeed
Definition: navigation.c:116
uint32_t nav_throttle
direct throttle from 0:MAX_PPRZ, used in VERTICAL_MODE_MANUAL
Definition: navigation.c:119
int32_t nav_cmd_yaw
Definition: navigation.h:68
float failsafe_mode_dist2
maximum squared distance to home wp before going to failsafe mode
Definition: navigation.c:90
void nav_parse_BLOCK(uint8_t *buf)
Definition: navigation.c:231
static void NavSegment(uint8_t wp_start, uint8_t wp_end)
Definition: navigation.h:294
struct EnuCoor_i navigation_target
Definition: navigation.c:96
static void NavGlide(uint8_t start_wp, uint8_t wp)
Nav glide routine.
Definition: navigation.h:302
float get_dist2_to_point(struct EnuCoor_i *p)
Returns squared horizontal distance to given point.
Definition: navigation.c:465
int32_t nav_circle_qdr
Definition: navigation.h:59
void nav_set_heading_towards_target(void)
Set heading in the direction of the target.
Definition: navigation.c:526
void nav_route(struct EnuCoor_i *wp_start, struct EnuCoor_i *wp_end)
Definition: navigation.c:594
void nav_oval_init(void)
Definition: nav.c:758
int32_t nav_circle_radius
Definition: nav.c:71
float dist2_to_home
squared distance to home waypoint
Definition: navigation.c:91
bool nav_approaching_from(struct EnuCoor_i *wp, struct EnuCoor_i *from, int16_t approaching_time)
Proximity tests on approaching a wp.
Definition: navigation.c:291
static void NavKillThrottle(void)
Definition: navigation.h:157
void nav_set_heading_rad(float rad)
Set nav_heading in radians.
Definition: navigation.c:494
static void NavResurrect(void)
Definition: navigation.h:161
bool nav_detect_ground(void)
Definition: navigation.c:418
void nav_set_heading_deg(float deg)
Set nav_heading in degrees.
Definition: navigation.c:501
static void NavCircleWaypoint(uint8_t wp_center, float radius)
Definition: navigation.h:261
int32_t nav_heading
with INT32_ANGLE_FRAC
Definition: navigation.c:113
int32_t nav_pitch
with INT32_ANGLE_FRAC
Definition: navigation.h:66
int32_t nav_cmd_roll
Definition: navigation.c:114
uint8_t horizontal_mode
Definition: nav.c:73
void nav_periodic_task(void)
Navigation main: call to the code generated from the XML flight plan.
Definition: nav.c:446
float get_dist2_to_waypoint(uint8_t wp_id)
Returns squared horizontal distance to given waypoint.
Definition: navigation.c:475
#define NavVerticalAltitudeMode(_alt, _pre_climb)
Set the vertical mode to altitude control with the specified altitude setpoint and climb pre-command.
Definition: navigation.h:220
bool exception_flag[10]
Definition: navigation.c:103
static void NavGotoWaypointHeading(uint8_t wp)
Definition: navigation.h:193
int32_t nav_altitude
Definition: navigation.h:79
uint8_t vertical_mode
Definition: sim_ap.c:32
void set_exception_flag(uint8_t flag_num)
Definition: navigation.c:135
void nav_set_failsafe(void)
Definition: navigation.c:538
#define TRUE
Definition: std.h:4
#define FALSE
Definition: std.h:5
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition: vl53l1_types.h:88
int int32_t
Typedef defining 32 bit int type.
Definition: vl53l1_types.h:83
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78
short int16_t
Typedef defining 16 bit short type.
Definition: vl53l1_types.h:93
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98