Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
mission_rotorcraft_nav.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Kadir Cimenci
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  */
22 
30 #include <stdio.h>
32 #include "autopilot.h"
34 #include "generated/flight_plan.h"
35 
36 
37 //Buffer zone in [m] before MAX_DIST_FROM_HOME
38 #define BUFFER_ZONE_DIST 10
39 
41 bool mission_point_of_lla(struct EnuCoor_f *point, struct LlaCoor_i *lla)
42 {
43  // return FALSE if there is no valid local coordinate system
44  if (!state.ned_initialized_i) {
45  return false;
46  }
47 
48  // change geoid alt to ellipsoid alt
50 
51  //Compute ENU components from LLA with respect to ltp origin
52  struct EnuCoor_i tmp_enu_point_i;
53  enu_of_lla_point_i(&tmp_enu_point_i, &state.ned_origin_i, lla);
54  struct EnuCoor_f tmp_enu_point_f;
55  // result of enu_of_lla_point_i is in cm, convert to float in m
56  VECT3_SMUL(tmp_enu_point_f, tmp_enu_point_i, 0.01);
57 
58  //Bound the new waypoint with max distance from home
59  struct FloatVect2 home;
60  home.x = waypoint_get_x(WP_HOME);
61  home.y = waypoint_get_y(WP_HOME);
62  struct FloatVect2 vect_from_home;
63  VECT2_DIFF(vect_from_home, tmp_enu_point_f, home);
64  //Saturate the mission wp not to overflow max_dist_from_home
65  //including a buffer zone before limits
66  float dist_to_home = float_vect2_norm(&vect_from_home);
67  dist_to_home += BUFFER_ZONE_DIST;
68  if (dist_to_home > MAX_DIST_FROM_HOME) {
69  VECT2_SMUL(vect_from_home, vect_from_home, (MAX_DIST_FROM_HOME / dist_to_home));
70  }
71  // set new point
72  VECT2_SUM(*point, home, vect_from_home);
73  point->z = tmp_enu_point_f.z;
74 
75  return true;
76 }
77 
78 // navigation time step
79 static const float dt_navigation = 1.0f / ((float)NAVIGATION_FREQUENCY);
80 
81 // last_mission_wp, last target wp from mission elements, not used actively and kept for future implementations
82 struct EnuCoor_f last_mission_wp = { 0.f, 0.f, 0.f };
83 
86 static inline bool mission_nav_wp(struct _mission_element *el)
87 {
88  struct EnuCoor_f *target_wp = &(el->element.mission_wp.wp);
89 
90  //Check proximity and wait for 'duration' seconds in proximity circle if desired
91  if (nav.nav_approaching(target_wp, NULL, CARROT)
92 #ifdef MISSION_ALT_PROXIMITY
93  && fabsf(stateGetPositionEnu_f()->z - target_wp->z) <= MISSION_ALT_PROXIMITY
94 #endif
95  ) {
96  last_mission_wp = *target_wp;
97 
98  if (el->duration > 0.f) {
99  if (nav_check_wp_time(target_wp, el->duration)) { return false; }
100  } else { return false; }
101 
102  }
103  //Go to Mission Waypoint
104  nav.nav_goto(target_wp);
105  NavVerticalAutoThrottleMode(RadOfDeg(0.f));
106  NavVerticalAltitudeMode(target_wp->z, 0.f);
107 
108  return true;
109 }
110 
113 static inline bool mission_nav_circle(struct _mission_element *el)
114 {
115  struct EnuCoor_f *center_wp = &(el->element.mission_circle.center);
116  float radius = el->element.mission_circle.radius;
117 
118  //Draw the desired circle for a 'duration' time
119  nav.nav_circle(center_wp, radius);
120  NavVerticalAutoThrottleMode(RadOfDeg(0.f));
121  NavVerticalAltitudeMode(center_wp->z, 0.f);
122 
123  if (el->duration > 0.f && mission.element_time >= el->duration) {
124  return false;
125  }
126 
127  return true;
128 }
129 
132 static inline bool mission_nav_segment(struct _mission_element *el)
133 {
134  struct EnuCoor_f *from_wp = &(el->element.mission_segment.from);
135  struct EnuCoor_f *to_wp = &(el->element.mission_segment.to);
136 
137  //Check proximity and wait for 'duration' seconds in proximity circle if desired
138  if (nav.nav_approaching(to_wp, from_wp, CARROT)
139 #ifdef MISSION_ALT_PROXIMITY
140  && fabsf(stateGetPositionEnu_f()->z - to_wp->z) <= MISSION_ALT_PROXIMITY
141 #endif
142  ) {
143  last_mission_wp = *to_wp;
144 
145  if (el->duration > 0.f) {
146  if (nav_check_wp_time(to_wp, el->duration)) { return false; }
147  } else { return false; }
148  }
149 
150  //Route Between from-to
151  nav.nav_route(from_wp, to_wp);
152  NavVerticalAutoThrottleMode(RadOfDeg(0.f));
153  NavVerticalAltitudeMode(to_wp->z, 0.f);
154 
155  return true;
156 }
157 
158 
161 static inline bool mission_nav_path(struct _mission_element *el)
162 {
163  if (el->element.mission_path.nb == 0) {
164  return false; // nothing to do
165  }
166 
167  if (el->element.mission_path.path_idx == 0) { //first wp of path
168  el->element.mission_wp.wp = el->element.mission_path.path[0];
169  if (!mission_nav_wp(el)) { el->element.mission_path.path_idx++; }
170  }
171 
172  else if (el->element.mission_path.path_idx < el->element.mission_path.nb) { //standart wp of path
173 
174  struct EnuCoor_f *from_wp = &(el->element.mission_path.path[(el->element.mission_path.path_idx) - 1]);
175  struct EnuCoor_f *to_wp = &(el->element.mission_path.path[el->element.mission_path.path_idx]);
176 
177  //Check proximity and wait for t seconds in proximity circle if desired
178  if (nav.nav_approaching(to_wp, from_wp, CARROT)
179 #ifdef MISSION_ALT_PROXIMITY
180  && fabsf(stateGetPositionEnu_f()->z - from_wp->z) <= MISSION_ALT_PROXIMITY
181 #endif
182  ) {
183  last_mission_wp = *to_wp;
184 
185  if (el->duration > 0.f) {
186  if (nav_check_wp_time(to_wp, el->duration)) {
187  el->element.mission_path.path_idx++;
188  }
189  } else { el->element.mission_path.path_idx++; }
190  }
191  //Route Between from-to
192  nav.nav_route(from_wp, to_wp);
193  NavVerticalAutoThrottleMode(RadOfDeg(0.f));
194  NavVerticalAltitudeMode(from_wp->z, 0.f);
195  } else { return false; } //end of path
196 
197  return true;
198 }
199 
202 static inline bool mission_nav_custom(struct _mission_custom *custom, bool init)
203 {
204  if (init) {
205  return custom->reg->cb(custom->nb, custom->params, MissionInit);
206  } else {
207  return custom->reg->cb(custom->nb, custom->params, MissionRun);
208  }
209 }
210 
214 #ifndef MISSION_WAIT_TIMEOUT
215 #define MISSION_WAIT_TIMEOUT 30 // wait 30 seconds before ending mission
216 #endif
217 
218 static bool mission_wait_started = false;
219 #if MISSION_WAIT_TIMEOUT
220 static float mission_wait_time = 0.f;
221 static struct _mission_element mission_wait_wp;
222 static bool mission_wait_pattern(void) {
223  if (!mission_wait_started) {
224  mission_wait_wp.element.mission_wp.wp = *stateGetPositionEnu_f();
225  mission_wait_time = 0.f;
226  mission_wait_started = true;
227  }
230  return (mission_wait_time < (float)MISSION_WAIT_TIMEOUT); // keep flying until TIMEOUT
231 }
232 #else
233 static bool mission_wait_pattern(void) {
234  return false; // no TIMEOUT, end mission now
235 }
236 #endif
237 
239 {
240  // current element
241  struct _mission_element *el = NULL;
242  if ((el = mission_get()) == NULL) {
243  return mission_wait_pattern();
244  }
245  mission_wait_started = false;
246 
247  bool el_running = false;
248  switch (el->type) {
249  case MissionWP:
250  el_running = mission_nav_wp(el);
251  break;
252  case MissionCircle:
253  el_running = mission_nav_circle(el);
254  break;
255  case MissionSegment:
256  el_running = mission_nav_segment(el);
257  break;
258  case MissionPath:
259  el_running = mission_nav_path(el);
260  break;
261  case MissionCustom:
262  el_running = mission_nav_custom(&(el->element.mission_custom), mission.element_time < dt_navigation);
263  break;
264  default:
265  // invalid type or pattern not yet handled
266  break;
267  }
268 
269  // increment element_time
271 
272  if (!el_running) {
273  // reset timer
274  mission.element_time = 0.;
275  // go to next element
277  }
278  return true;
279 }
280 
Core autopilot interface common to all firmwares.
static float float_vect2_norm(struct FloatVect2 *v)
#define VECT2_SMUL(_vo, _vi, _s)
Definition: pprz_algebra.h:98
#define VECT2_DIFF(_c, _a, _b)
Definition: pprz_algebra.h:92
#define VECT2_SUM(_c, _a, _b)
Definition: pprz_algebra.h:86
#define VECT3_SMUL(_vo, _vi, _s)
Definition: pprz_algebra.h:189
int32_t hmsl
Height above mean sea level in mm.
int32_t alt
in millimeters above WGS84 reference ellipsoid
struct LlaCoor_i lla
Reference point in lla.
void enu_of_lla_point_i(struct EnuCoor_i *enu, struct LtpDef_i *def, struct LlaCoor_i *lla)
Convert a point from LLA to local ENU.
vector in East North Up coordinates
vector in Latitude, Longitude and Altitude
struct State state
Definition: state.c:36
static struct EnuCoor_f * stateGetPositionEnu_f(void)
Get position in local ENU coordinates (float).
Definition: state.h:719
struct LtpDef_i ned_origin_i
Definition of the local (flat earth) coordinate system.
Definition: state.h:166
bool ned_initialized_i
true if local int coordinate frame is initialsed
Definition: state.h:171
struct _mission mission
struct _mission_element * mission_get(void)
Get current mission element.
mission planner library
float params[MISSION_CUSTOM_MAX]
list of parameters
struct _mission_registered * reg
pointer to a registered custom mission element
mission_custom_cb cb
navigation/action function callback
uint8_t nb
number of parameters
@ MissionCustom
@ MissionCircle
@ MissionWP
@ MissionSegment
@ MissionPath
@ MissionInit
first exec
@ MissionRun
normal run
float element_time
time in second spend in the current element
enum MissionType type
#define MISSION_ELEMENT_NB
Max number of elements in the tasks' list can be redefined.
union _mission_element::@296 element
float duration
time to spend in the element (<= 0 to disable)
uint8_t current_idx
current mission element index
static bool mission_wait_pattern(void)
struct EnuCoor_f last_mission_wp
static float mission_wait_time
static bool mission_nav_wp(struct _mission_element *el)
Navigation function to a single waypoint.
static bool mission_nav_segment(struct _mission_element *el)
Navigation function along a segment.
static bool mission_nav_circle(struct _mission_element *el)
Navigation function on a circle.
static bool mission_nav_custom(struct _mission_custom *custom, bool init)
Call custom navigation function.
int mission_run()
Run mission.
bool mission_point_of_lla(struct EnuCoor_f *point, struct LlaCoor_i *lla)
Utility function: converts lla (int) to local point (float)
#define BUFFER_ZONE_DIST
static const float dt_navigation
#define MISSION_WAIT_TIMEOUT
Implement waiting pattern Only called when MISSION_WAIT_TIMEOUT is not 0.
static bool mission_nav_path(struct _mission_element *el)
Navigation function along a path.
static struct _mission_element mission_wait_wp
static bool mission_wait_started
float waypoint_get_x(uint8_t wp_id)
Get X/East coordinate of waypoint in meters.
Definition: waypoints.c:97
float waypoint_get_y(uint8_t wp_id)
Get Y/North coordinate of waypoint in meters.
Definition: waypoints.c:105
#define NAVIGATION_FREQUENCY
Default fixedwing navigation frequency.
Definition: nav.h:49
#define NavVerticalAltitudeMode(_alt, _pre_climb)
Set the vertical mode to altitude control with the specified altitude setpoint and climb pre-command.
Definition: nav.h:191
#define NavVerticalAutoThrottleMode(_pitch)
Set the climb control to auto-throttle with the specified pitch pre-command.
Definition: nav.h:177
bool init
Definition: nav_gls.c:57
float z
in meters
vector in East North Up coordinates Units: meters
struct RotorcraftNavigation nav
Definition: navigation.c:51
bool nav_check_wp_time(struct EnuCoor_f *wp, uint16_t stay_time)
Check the time spent in a radius of 'ARRIVED_AT_WAYPOINT' around a wp
Definition: navigation.c:181
Rotorcraft navigation functions.
navigation_approaching nav_approaching
Definition: navigation.h:152
navigation_circle nav_circle
Definition: navigation.h:153
#define CARROT
default approaching_time for a wp
Definition: navigation.h:70
navigation_goto nav_goto
Definition: navigation.h:150
navigation_route nav_route
Definition: navigation.h:151