Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
nav.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2003-2009 ENAC, Pascal Brisset, Antoine Drouin
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
31#ifndef NAV_H
32#define NAV_H
33
34#include "std.h"
35#include "paparazzi.h"
36#include "state.h"
37#ifdef CTRL_TYPE_H
38#include CTRL_TYPE_H
39#endif
43#include "autopilot.h"
44#include "pprzlink/pprzlink_device.h"
45#include "pprzlink/pprzlink_transport.h"
46
48#ifndef NAVIGATION_FREQUENCY
49#define NAVIGATION_FREQUENCY 20
50#endif
51
52#define NAV_GRAVITY 9.806
53#define Square(_x) ((_x)*(_x))
54#define DistanceSquare(p1_x, p1_y, p2_x, p2_y) (Square(p1_x-p2_x)+Square(p1_y-p2_y))
55
56#define PowerVoltage() (electrical.vsupply)
57#define RcRoll(travel) (radio_control_get(RADIO_ROLL) * (float)travel /(float)MAX_PPRZ)
58
59
61extern enum oval_status oval_status;
62extern float cur_pos_x;
63extern float cur_pos_y;
64extern float last_x, last_y;
65
67
69extern float nav_pitch; /* Rad */
70extern float rc_pitch;
71extern float fp_pitch; /* Degrees */
72extern float fp_throttle; /* [0-1] */
73extern float fp_climb; /* m/s */
74
75extern float carrot_x, carrot_y;
76
77extern float nav_circle_radians; /* Cumulated */
78extern float nav_circle_radians_no_rewind; /* Cumulated */
79extern bool nav_in_circle;
80extern bool nav_in_segment;
83
84extern int nav_mode;
85#define NAV_MODE_ROLL 1
86#define NAV_MODE_COURSE 2
87
89
90#define HORIZONTAL_MODE_WAYPOINT 0
91#define HORIZONTAL_MODE_ROUTE 1
92#define HORIZONTAL_MODE_CIRCLE 2
93
94extern void fly_to_xy(float x, float y);
95
96#define NavGotoWaypoint(_wp) { \
97 horizontal_mode = HORIZONTAL_MODE_WAYPOINT; \
98 fly_to_xy(waypoints[_wp].x, waypoints[_wp].y); \
99 }
100
101#define NavGotoPoint(_point) { \
102 horizontal_mode = HORIZONTAL_MODE_WAYPOINT; \
103 fly_to_xy(_point.x, _point.y); \
104 }
105
106
107extern void nav_eight_init(void);
108extern void nav_eight(uint8_t, uint8_t, float);
109#define Eight(a, b, c) nav_eight((a), (b), (c))
110
111extern void nav_oval_init(void);
112extern void nav_oval(uint8_t, uint8_t, float);
114#define Oval(a, b, c) nav_oval((b), (a), (c))
115
116extern float nav_radius; /* m */
117extern float nav_course; /* degrees, clockwise, 0.0 = N */
118extern float nav_climb; /* m/s */
119extern float nav_shift; /* Lateral shift along a route. In meters */
120
122
123
124extern float nav_survey_shift;
126extern bool nav_survey_active;
127
128extern void nav_periodic_task(void);
129extern void nav_home(void);
130extern void nav_init(void);
131extern void nav_without_gps(void);
132extern void nav_parse_BLOCK(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
133extern void nav_parse_MOVE_WP(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
134
135extern float nav_circle_trigo_qdr;
136extern void nav_circle_XY(float x, float y, float radius);
137
138extern float baseleg_out_qdr;
139extern void nav_compute_baseleg(uint8_t wp_af, uint8_t wp_td, uint8_t wp_baseleg, float radius);
141
142#define RCLost() RadioControlIsLost()
143
144extern void nav_follow(uint8_t _ac_id, float _distance, float _height);
145#define NavFollow(_ac_id, _distance, _height) nav_follow(_ac_id, _distance, _height)
146
147extern void nav_glide(uint8_t start_wp, uint8_t wp);
148extern void nav_glide_alt(float start_alt, float final_alt);
149#define NavGlide(_start_wp, _wp) nav_glide(_start_wp, _wp)
150
151#define NavCircleWaypoint(wp, radius) \
152 nav_circle_XY(waypoints[wp].x, waypoints[wp].y, radius)
153
154#define NavCircleCountNoRewind() (nav_circle_radians_no_rewind / (2*M_PI))
155#define NavCircleCount() (fabs(nav_circle_radians) / (2*M_PI))
156#define NavCircleQdr() ({ float qdr = DegOfRad(M_PI_2 - nav_circle_trigo_qdr); NormCourse(qdr); qdr; })
157
158#define CloseDegAngles(_c1, _c2) ({ float _diff = _c1 - _c2; NormCourse(_diff); 350 < _diff || _diff < 10; })
159
161#define NavQdrCloseTo(x) CloseDegAngles(x, NavCircleQdr())
162
163#define NavCourseCloseTo(x) CloseDegAngles(x, DegOfRad(stateGetHorizontalSpeedDir_f()))
164
165/*********** Navigation along a line *************************************/
166extern void nav_route_xy(float last_wp_x, float last_wp_y, float wp_x, float wp_y);
167#define NavSegment(_start, _end) \
168 nav_route_xy(waypoints[_start].x, waypoints[_start].y, waypoints[_end].x, waypoints[_end].y)
169
170bool nav_approaching_xy(float x, float y, float from_x, float from_y, float approaching_time);
171#define NavApproaching(wp, time) nav_approaching_xy(waypoints[wp].x, waypoints[wp].y, last_x, last_y, time)
172#define NavApproachingFrom(wp, from, time) nav_approaching_xy(waypoints[wp].x, waypoints[wp].y, waypoints[from].x, waypoints[from].y, time)
173
174
177#define NavVerticalAutoThrottleMode(_pitch) { \
178 v_ctl_climb_mode = V_CTL_CLIMB_MODE_AUTO_THROTTLE; \
179 nav_pitch = _pitch; \
180 }
181
184#define NavVerticalAutoPitchMode(_throttle) { \
185 v_ctl_climb_mode = V_CTL_CLIMB_MODE_AUTO_PITCH; \
186 nav_throttle_setpoint = _throttle; \
187 }
188
191#define NavVerticalAltitudeMode(_alt, _pre_climb) { \
192 v_ctl_mode = V_CTL_MODE_AUTO_ALT; \
193 nav_altitude = _alt; \
194 v_ctl_altitude_pre_climb = _pre_climb; \
195 }
196
198#define NavVerticalClimbMode(_climb) { \
199 v_ctl_mode = V_CTL_MODE_AUTO_CLIMB; \
200 v_ctl_climb_setpoint = _climb; \
201 }
202
204#define NavVerticalThrottleMode(_throttle) { \
205 v_ctl_mode = V_CTL_MODE_AUTO_THROTTLE; \
206 nav_throttle_setpoint = _throttle; \
207 }
208
209#define NavHeading(_course) { \
210 lateral_mode = LATERAL_MODE_COURSE; \
211 h_ctl_course_setpoint = _course; \
212 }
213
214#define NavAttitude(_roll) { \
215 lateral_mode = LATERAL_MODE_ROLL; \
216 if(autopilot_get_mode() != AP_MODE_AUTO1) \
217 {h_ctl_roll_setpoint = _roll;} \
218 }
219
220#define NavSetMaxSpeed(_speed) {} // not used
221
222#define nav_IncreaseShift(x) { if (x==0) nav_shift = 0; else nav_shift += x; }
223
224#define nav_SetNavRadius(x) { if (x==1) nav_radius = DEFAULT_CIRCLE_RADIUS; else if (x==-1) nav_radius = -DEFAULT_CIRCLE_RADIUS; else nav_radius = x; }
225
226#define NavKillThrottle() { autopilot_set_kill_throttle(true); }
227
229#define GetPosX() (stateGetPositionEnu_f()->x)
231#define GetPosY() (stateGetPositionEnu_f()->y)
233#define GetPosAlt() (stateGetPositionUtm_f()->alt)
235#define GetPosHeight() (stateGetPositionEnu_f()->z)
242#define GetAltRef() (ground_alt)
243
244#if DOWNLINK
245#define SEND_NAVIGATION(_trans, _dev) { \
246 uint8_t _circle_count = NavCircleCount(); \
247 struct EnuCoor_f* pos = stateGetPositionEnu_f(); \
248 float dist_wp = sqrtf(dist2_to_wp); \
249 float dist_home = sqrtf(dist2_to_home); \
250 uint8_t kill = (uint8_t)autopilot.kill_throttle; \
251 pprz_msg_send_NAVIGATION(_trans, _dev, AC_ID, &nav_block, &nav_stage, &(pos->x), &(pos->y), &dist_wp, &dist_home, &autopilot.flight_time, &block_time, &stage_time, &kill, &_circle_count, &nav_oval_count); \
252 }
253
254extern void DownlinkSendWpNr(uint8_t _wp);
255
256#endif /* DOWNLINK */
257
258#endif /* NAV_H */
Core autopilot interface common to all firmwares.
Common flight_plan functions shared between fixedwing and rotorcraft.
uint16_t foo
Definition main_demo5.c:58
bool nav_in_segment
Definition nav.c:67
void nav_home(void)
Home mode navigation (circle around HOME)
Definition nav.c:424
void nav_eight(uint8_t, uint8_t, float)
Navigation along a figure 8.
Definition nav.c:633
float baseleg_out_qdr
Definition nav.c:219
float nav_glide_pitch_trim
Definition nav.h:66
bool nav_survey_active
Definition nav.c:88
int nav_mode
Definition nav.c:90
float nav_segment_x_2
Definition nav.h:82
float flight_altitude
Dynamically adjustable, reset to nav_altitude when it is changing.
Definition nav.h:66
float nav_survey_east
Definition nav.h:125
bool nav_approaching_xy(float x, float y, float from_x, float from_y, float approaching_time)
Decide if the UAV is approaching the current waypoint.
Definition nav.c:325
float nav_segment_y_2
Definition nav.h:82
float fp_throttle
Definition nav.c:312
float carrot_x
Definition nav.c:50
float last_y
Definition nav.h:64
float nav_circle_radius
Definition nav.h:81
uint8_t nav_oval_count
Navigation along a figure O.
Definition nav.c:754
float nav_ground_speed_pgain
Definition nav.c:83
float carrot_y
Definition nav.h:75
float nav_climb
Definition nav.c:56
float nav_survey_north
Definition nav.h:125
float nav_radius
Definition nav.c:56
void nav_compute_baseleg(uint8_t wp_af, uint8_t wp_td, uint8_t wp_baseleg, float radius)
Definition nav.c:220
void nav_oval(uint8_t, uint8_t, float)
Definition nav.c:762
float nav_survey_south
Definition nav.h:125
pprz_t nav_throttle_setpoint
Definition nav.c:309
void nav_init(void)
Navigation Initialisation.
Definition nav.c:532
float nav_altitude
Definition nav.h:66
oval_status
Definition nav.h:60
@ OC2
Definition nav.h:60
@ OC1
Definition nav.h:60
@ OR12
Definition nav.h:60
@ OR21
Definition nav.h:60
void nav_follow(uint8_t _ac_id, float _distance, float _height)
Definition nav.c:302
float fp_pitch
Definition nav.c:311
float nav_circle_y
Definition nav.h:81
float desired_x
Definition nav.c:308
float nav_segment_x_1
Definition nav.c:69
void DownlinkSendWpNr(uint8_t _wp)
Definition nav.c:497
bool nav_in_circle
Definition nav.c:66
float cur_pos_y
float nav_segment_y_1
Definition nav.h:82
float nav_circle_trigo_qdr
Definition nav.c:55
float nav_circle_radians_no_rewind
Definition nav.c:54
void nav_glide_alt(float start_alt, float final_alt)
Definition nav.c:163
float cur_pos_x
void nav_oval_init(void)
Definition nav.c:756
float nav_shift
Definition nav.c:56
float last_x
Definition nav.c:47
void nav_route_xy(float last_wp_x, float last_wp_y, float wp_x, float wp_y)
Computes the carrot position along the desired segment.
Definition nav.c:382
void nav_parse_MOVE_WP(struct link_device *dev, struct transport_tx *trans, uint8_t *buf)
Definition nav.c:592
void nav_without_gps(void)
Failsafe navigation without position estimation.
Definition nav.c:569
float desired_y
Definition nav.h:66
float nav_pitch
Definition nav.c:310
float nav_circle_x
Definition nav.c:68
float nav_survey_shift
Definition nav.c:86
float rc_pitch
Definition nav.c:49
void nav_circle_XY(float x, float y, float radius)
Angle from center to mobile.
Definition nav.c:108
uint8_t horizontal_mode
Definition nav.c:70
void nav_periodic_task(void)
Navigation main: call to the code generated from the XML flight plan.
Definition nav.c:445
float fp_climb
Definition nav.c:313
void nav_compute_final_from_glide(uint8_t wp_af, uint8_t wp_td, float glide)
Definition nav.c:241
float nav_circle_radians
Status on the current circle.
Definition nav.c:53
void nav_eight_init(void)
Definition nav.c:620
void fly_to_xy(float x, float y)
Computes desired_x, desired_y and desired_course.
Definition nav.c:356
float nav_ground_speed_setpoint
Definition nav.h:121
float nav_survey_west
Definition nav.c:87
float nav_course
Definition nav.c:56
void nav_glide(uint8_t start_wp, uint8_t wp)
Definition nav.c:158
void nav_parse_BLOCK(struct link_device *dev, struct transport_tx *trans, uint8_t *buf)
Definition nav.c:585
int16_t pprz_t
Definition paparazzi.h:6
API to get/set the generic vehicle states.
static const struct usb_device_descriptor dev
Definition usb_ser_hw.c:74
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.