Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
navigation.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 Gautier Hattenberger <gautier.hattenberger@enac.fr>
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 #define NAV_C
29 
31 
32 #include "pprz_debug.h"
33 #include "subsystems/gps.h" // needed by auto_nav from the flight plan
34 #include "subsystems/ins.h"
35 #include "state.h"
36 
37 #include "autopilot.h"
38 #include "generated/modules.h"
39 #include "generated/flight_plan.h"
40 
41 #include "math/pprz_algebra_int.h"
42 
44 #include "pprzlink/messages.h"
45 #include "mcu_periph/uart.h"
46 
47 
48 
50 
51 uint8_t last_wp __attribute__((unused));
52 
53 const float max_dist_from_home = MAX_DIST_FROM_HOME;
54 const float max_dist2_from_home = MAX_DIST_FROM_HOME * MAX_DIST_FROM_HOME;
56 
57 
59 {
60  nav.exception_flag[flag_num] = true;
61 }
62 
63 
64 #if PERIODIC_TELEMETRY
66 
67 static void send_wp_moved(struct transport_tx *trans, struct link_device *dev)
68 {
69  static uint8_t i;
70  i++;
71  if (i >= nb_waypoint) { i = 0; }
72  pprz_msg_send_WP_MOVED_ENU(trans, dev, AC_ID,
73  &i,
74  &(waypoints[i].enu_i.x),
75  &(waypoints[i].enu_i.y),
76  &(waypoints[i].enu_i.z));
77 }
78 #endif
79 
80 void nav_init(void)
81 {
83 
84  nav_block = 0;
85  nav_stage = 0;
86 
88 
89  VECT3_COPY(nav.target, waypoints[WP_HOME].enu_f);
90  VECT3_COPY(nav.carrot, waypoints[WP_HOME].enu_f);
91  nav.heading = 0.f;
93  nav.speed = 0.f;
94  nav.turn = 0.f;
95  nav.shift = 0.f;
96 
97  nav.too_far_from_home = false;
98  nav.dist2_to_home = 0.f;
99 
100 #if PERIODIC_TELEMETRY
102 #endif
103 
104  // generated init function
105  auto_nav_init();
106 }
107 
108 
109 void nav_run(void)
110 {
112 }
113 
114 
115 bool nav_check_wp_time(struct EnuCoor_f *wp, float stay_time)
116 {
117  (void) wp;
118  (void) stay_time;
119  return true;
120 // uint16_t time_at_wp;
121 // float dist_to_point;
122 // static uint16_t wp_entry_time = 0;
123 // static bool wp_reached = false;
124 // static struct EnuCoor_i wp_last = { 0, 0, 0 };
125 // struct Int32Vect2 diff;
126 //
127 // if ((wp_last.x != wp->x) || (wp_last.y != wp->y)) {
128 // wp_reached = false;
129 // wp_last = *wp;
130 // }
131 //
132 // VECT2_DIFF(diff, *wp, *stateGetPositionEnu_i());
133 // struct FloatVect2 diff_f = {POS_FLOAT_OF_BFP(diff.x), POS_FLOAT_OF_BFP(diff.y)};
134 // dist_to_point = float_vect2_norm(&diff_f);
135 // if (dist_to_point < ARRIVED_AT_WAYPOINT) {
136 // if (!wp_reached) {
137 // wp_reached = true;
138 // wp_entry_time = autopilot.flight_time;
139 // time_at_wp = 0;
140 // } else {
141 // time_at_wp = autopilot.flight_time - wp_entry_time;
142 // }
143 // } else {
144 // time_at_wp = 0;
145 // wp_reached = false;
146 // }
147 // if (time_at_wp > stay_time) {
148 // INT_VECT3_ZERO(wp_last);
149 // return true;
150 // }
151 // return false;
152 }
153 
154 
157 {
159  /* update local ENU coordinates of global waypoints */
161 }
162 
163 void nav_reset_alt(void)
164 {
167 }
168 
169 void nav_init_stage(void)
170 {
172  stage_time = 0;
173  //nav_circle_radians = 0; FIXME
174 }
175 
177 {
178  RunOnceEvery(NAV_FREQ, { stage_time++; block_time++; });
179 
180  //nav.dist2_to_wp = 0; FIXME
181 
182  /* from flight_plan.h */
183  auto_nav();
184 
185  /* run carrot loop */
186  nav_run();
187 }
188 
190 {
191  return autopilot_in_flight();
192 }
193 
195 void nav_home(void)
196 {
198  VECT3_COPY(nav.target, waypoints[WP_HOME].enu_f);
199 
200  //nav.dist2_to_wp = nav.dist2_to_home; FIXME
201 
202  /* run carrot loop */
203  nav_run();
204 }
205 
208 {
209  struct EnuCoor_f *pos = stateGetPositionEnu_f();
210  struct FloatVect2 pos_diff = {
211  .x = p->x - pos->x,
212  .y = p->y - pos->y
213  };
214  return pos_diff.x * pos_diff.x + pos_diff.y * pos_diff.y;
215 }
216 
219 {
220  return get_dist2_to_point(&waypoints[wp_id].enu_f);
221 }
222 
227 {
230 #ifdef InGeofenceSector
231  struct EnuCoor_f *pos = stateGetPositionEnu_f();
232  nav.too_far_from_home = nav.too_far_from_home || !(InGeofenceSector(pos->x, pos->y));
233 #endif
234 }
235 
237 void nav_set_heading_rad(float rad)
238 {
239  nav.heading = rad;
241 }
242 
244 void nav_set_heading_deg(float deg)
245 {
246  nav_set_heading_rad(RadOfDeg(deg));
247 }
248 
250 void nav_set_heading_towards(float x, float y)
251 {
252  struct FloatVect2 target = {x, y};
253  struct FloatVect2 pos_diff;
255  // don't change heading if closer than 0.5m to target
256  if (VECT2_NORM2(pos_diff) > 0.25f) {
257  nav.heading = atan2f(pos_diff.x, pos_diff.y);
258  }
259 }
260 
263 {
265 }
266 
269 {
271 }
272 
275 {
277 }
278 
280 {
281 #ifdef AP_MODE_FAILSAFE
283 #endif
284 }
285 
286 
291 {
295 }
296 
298 {
300 }
301 
303 {
306 }
307 
308 
nav_rover_oval_init
void(* nav_rover_oval_init)(void)
Definition: navigation.h:77
RoverNavigation::dist2_to_home
float dist2_to_home
squared distance to home waypoint
Definition: navigation.h:97
ins.h
pprz_debug.h
block_time
uint16_t block_time
Definition: common_flight_plan.c:33
RoverNavigation::too_far_from_home
bool too_far_from_home
too_far flag
Definition: navigation.h:98
RoverNavigation::nav_goto
nav_rover_goto nav_goto
Definition: navigation.h:104
compute_dist2_to_home
void compute_dist2_to_home(void)
Computes squared distance to the HOME waypoint potentially sets too_far_from_home.
Definition: navigation.c:478
ins_reset_altitude_ref
void ins_reset_altitude_ref(void)
INS altitude reference reset.
Definition: ins_mekf_wind_wrapper.c:649
WaypointY
#define WaypointY(_wp)
Definition: common_nav.h:46
RoverNavigation::carrot
struct EnuCoor_f carrot
carrot position
Definition: navigation.h:89
nav_check_wp_time
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:306
AP_MODE_FAILSAFE
#define AP_MODE_FAILSAFE
Definition: autopilot_static.h:36
stateGetPositionEnu_f
static struct EnuCoor_f * stateGetPositionEnu_f(void)
Get position in local ENU coordinates (float).
Definition: state.h:719
nav_rover_goto
void(* nav_rover_goto)(struct EnuCoor_f *wp)
Definition: navigation.h:73
RoverNavigation::target
struct EnuCoor_f target
final target
Definition: navigation.h:88
nav_circle
void nav_circle(struct EnuCoor_i *wp_center, int32_t radius)
Definition: navigation.c:543
WaypointX
#define WaypointX(_wp)
Definition: common_nav.h:45
stateGetNedToBodyEulers_f
static struct FloatEulers * stateGetNedToBodyEulers_f(void)
Get vehicle body attitude euler angles (float).
Definition: state.h:1143
nav_set_heading_towards
void nav_set_heading_towards(float x, float y)
Set heading to point towards x,y position in local coordinates.
Definition: navigation.c:502
NAV_MODE_WAYPOINT
#define NAV_MODE_WAYPOINT
Nav modes.
Definition: navigation.h:67
nav_oval_init
void nav_oval_init(void)
Definition: navigation.c:630
nav_reset_reference
void nav_reset_reference(void)
Reset the geographic reference to the current GPS fix.
Definition: navigation.c:353
nav_stage
uint8_t nav_stage
Definition: common_flight_plan.c:35
nav
struct RoverNavigation nav
Definition: navigation.c:49
NormCourseRad
#define NormCourseRad(x)
Normalize a rad angle between 0 and 2*PI.
Definition: navigation.h:149
get_dist2_to_waypoint
float get_dist2_to_waypoint(uint8_t wp_id)
Returns squared horizontal distance to given waypoint.
Definition: navigation.c:470
waypoints
struct point waypoints[NB_WAYPOINT]
size == nb_waypoint, waypoint 0 is a dummy waypoint
Definition: common_nav.c:38
ins_reset_local_origin
void ins_reset_local_origin(void)
local implemetation of the ins_reset functions
Definition: ins_mekf_wind_wrapper.c:633
nav_set_heading_current
void nav_set_heading_current(void)
Set heading to the current yaw angle.
Definition: navigation.c:528
EnuCoor_f::y
float y
in meters
Definition: pprz_geodetic_float.h:74
pprz_algebra_int.h
Paparazzi fixed point algebra.
NAV_FREQ
#define NAV_FREQ
Definition: navigation.h:43
VECT2_DIFF
#define VECT2_DIFF(_c, _a, _b)
Definition: pprz_algebra.h:92
nav_reset_alt
void nav_reset_alt(void)
Definition: navigation.c:360
VECT2_COPY
#define VECT2_COPY(_a, _b)
Definition: pprz_algebra.h:68
nav_register_goto_wp
void nav_register_goto_wp(nav_rover_goto nav_goto, nav_rover_route nav_route, nav_rover_approaching nav_approaching)
Register functions.
Definition: navigation.c:290
nav_init
void nav_init(void)
Navigation Initialisation.
Definition: navigation.c:181
autopilot_in_flight
bool autopilot_in_flight(void)
get in_flight flag
Definition: autopilot.c:257
pos_diff
struct FloatVect2 pos_diff
Definition: obstacle_avoidance.c:75
FloatVect2
Definition: pprz_algebra_float.h:49
telemetry.h
last_wp
uint8_t last_wp
Index of last waypoint.
Definition: navigation.c:51
uart.h
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
nav_rover_route
void(* nav_rover_route)(struct EnuCoor_f *wp_start, struct EnuCoor_f *wp_end)
Definition: navigation.h:74
nav_rover_oval
void(* nav_rover_oval)(struct EnuCoor_f *wp1, struct EnuCoor_f *wp2, float radius)
Definition: navigation.h:78
gps.h
Device independent GPS code (interface)
RoverNavigation::mode
uint8_t mode
Definition: navigation.h:85
nav_run
void nav_run(void)
Definition: navigation.c:248
RoverNavigation::nav_route
nav_rover_route nav_route
Definition: navigation.h:105
DEFAULT_CIRCLE_RADIUS
#define DEFAULT_CIRCLE_RADIUS
default nav_circle_radius in meters
Definition: navigation.c:55
nb_waypoint
const uint8_t nb_waypoint
Definition: common_nav.c:37
nav_rover_circle
void(* nav_rover_circle)(struct EnuCoor_f *wp_center, float radius)
Definition: navigation.h:76
dev
static const struct usb_device_descriptor dev
Definition: usb_ser_hw.c:74
get_dist2_to_point
float get_dist2_to_point(struct EnuCoor_i *p)
Returns squared horizontal distance to given point.
Definition: navigation.c:460
nav_block
uint8_t nav_block
Definition: common_flight_plan.c:35
nav_route
void nav_route(struct EnuCoor_i *wp_start, struct EnuCoor_i *wp_end)
Definition: navigation.c:589
uint8_t
unsigned char uint8_t
Definition: types.h:14
register_periodic_telemetry
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Definition: telemetry.c:46
point::x
float x
Definition: common_nav.h:40
nav_oval
void nav_oval(uint8_t p1, uint8_t p2, float radius)
Navigation along a figure O.
Definition: navigation.c:642
EnuCoor_f
vector in East North Up coordinates Units: meters
Definition: pprz_geodetic_float.h:72
RoverNavigation::nav_circle
nav_rover_circle nav_circle
Definition: navigation.h:107
failsafe_mode_dist2
float failsafe_mode_dist2
maximum squared distance to home wp before going to failsafe mode
Definition: navigation.c:85
VECT2_NORM2
#define VECT2_NORM2(_v)
Definition: pprz_algebra.h:118
autopilot.h
nav_home
void nav_home(void)
Home mode navigation.
Definition: navigation.c:426
stage_time
uint16_t stage_time
In s.
Definition: common_flight_plan.c:33
RoverNavigation
General Navigation structure.
Definition: navigation.h:83
nav_register_circle
void nav_register_circle(nav_rover_circle nav_circle)
Definition: navigation.c:297
f
uint16_t f
Camera baseline, in meters (i.e. horizontal distance between the two cameras of the stereo setup)
Definition: wedgebug.c:204
RoverNavigation::nav_oval
nav_rover_oval nav_oval
Definition: navigation.h:109
FloatVect2::y
float y
Definition: pprz_algebra_float.h:51
set_exception_flag
void set_exception_flag(uint8_t flag_num)
Definition: navigation.c:130
send_wp_moved
static void send_wp_moved(struct transport_tx *trans, struct link_device *dev)
Definition: navigation.c:67
waypoints_init
void waypoints_init(void)
initialize global and local waypoints
Definition: waypoints.c:35
waypoints_localize_all
void waypoints_localize_all(void)
update local ENU coordinates of global waypoints
Definition: waypoints.c:293
navigation.h
FAILSAFE_MODE_DISTANCE
#define FAILSAFE_MODE_DISTANCE
Maximum distance from HOME waypoint before going into failsafe mode.
Definition: navigation.c:73
nav_periodic_task
void nav_periodic_task(void)
Navigation main: call to the code generated from the XML flight plan.
Definition: navigation.c:374
nav_register_oval
void nav_register_oval(nav_rover_oval_init nav_oval_init, nav_rover_oval nav_oval)
Definition: navigation.c:302
autopilot_set_mode
bool autopilot_set_mode(uint8_t new_autopilot_mode)
set autopilot mode
Definition: autopilot.c:161
point::y
float y
Definition: common_nav.h:41
nav_rover_approaching
bool(* nav_rover_approaching)(struct EnuCoor_f *wp_to, struct EnuCoor_f *wp_from, float approaching_time)
Definition: navigation.h:75
nav_set_heading_deg
void nav_set_heading_deg(float deg)
Set nav_heading in degrees.
Definition: navigation.c:496
nav_init_stage
void nav_init_stage(void)
needs to be implemented by fixedwing and rotorcraft seperately
Definition: navigation.c:366
RoverNavigation::speed
float speed
speed setpoint
Definition: navigation.h:92
nav_goto
static void nav_goto(struct EnuCoor_f *wp)
Implement basic nav function.
Definition: nav_rover_base.c:34
FloatVect2::x
float x
Definition: pprz_algebra_float.h:50
RoverNavigation::exception_flag
bool exception_flag[10]
array of flags that might be used in flight plans
Definition: navigation.h:100
EnuCoor_f::x
float x
in meters
Definition: pprz_geodetic_float.h:73
state.h
RoverNavigation::shift
float shift
lateral shift (in meters)
Definition: navigation.h:94
RoverNavigation::last_pos
struct EnuCoor_f last_pos
last stage position
Definition: navigation.h:101
nav_set_heading_towards_waypoint
void nav_set_heading_towards_waypoint(uint8_t wp)
Set heading in the direction of a waypoint.
Definition: navigation.c:515
FloatEulers::psi
float psi
in radians
Definition: pprz_algebra_float.h:87
nav_is_in_flight
bool nav_is_in_flight(void)
Definition: navigation.c:420
max_dist2_from_home
const float max_dist2_from_home
Definition: navigation.c:84
nav_set_heading_rad
void nav_set_heading_rad(float rad)
Set nav_heading in radians.
Definition: navigation.c:489
RoverNavigation::heading
float heading
heading setpoint (in radians)
Definition: navigation.h:90
target
struct FloatVect2 target
Definition: obstacle_avoidance.c:78
DefaultPeriodic
#define DefaultPeriodic
Set default periodic telemetry.
Definition: telemetry.h:66
RoverNavigation::nav_oval_init
nav_rover_oval_init nav_oval_init
Definition: navigation.h:108
nav_set_heading_towards_target
void nav_set_heading_towards_target(void)
Set heading in the direction of the target.
Definition: navigation.c:521
RoverNavigation::radius
float radius
radius setpoint
Definition: navigation.h:91
p
static float p[2][2]
Definition: ins_alt_float.c:268
VECT3_COPY
#define VECT3_COPY(_a, _b)
Definition: pprz_algebra.h:140
RoverNavigation::nav_approaching
nav_rover_approaching nav_approaching
Definition: navigation.h:106
nav_set_failsafe
void nav_set_failsafe(void)
Definition: navigation.c:533
max_dist_from_home
const float max_dist_from_home
Definition: navigation.c:83
nav_approaching
static bool nav_approaching(struct EnuCoor_f *wp, struct EnuCoor_f *from, float approaching_time)
Definition: nav_rover_base.c:63
RoverNavigation::turn
float turn
turn rate setpoint
Definition: navigation.h:93