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
mission_common.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 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  */
22 
30 #ifndef MISSION_COMMON_H
31 #define MISSION_COMMON_H
32 
33 #include "std.h"
35 #include "math/pprz_geodetic_int.h"
36 
38  MissionWP = 1,
42  MissionCustom = 5
43 };
44 
51 };
52 
54  MissionRun = 0,
56  MissionUpdate = 2
57 };
58 
59 struct _mission_wp {
60  union {
61  struct EnuCoor_f wp_f;
62  struct EnuCoor_i wp_i;
63  } wp;
64 };
65 
67  union {
68  struct EnuCoor_f center_f;
69  struct EnuCoor_i center_i;
70  } center;
71 
72  float radius;
73 };
74 
76  union {
77  struct EnuCoor_f from_f;
78  struct EnuCoor_i from_i;
79  } from;
80 
81  union {
82  struct EnuCoor_f to_f;
83  struct EnuCoor_i to_i;
84  } to;
85 };
86 
87 #define MISSION_PATH_NB 5
88 struct _mission_path {
89  union {
90  struct EnuCoor_f path_f[MISSION_PATH_NB];
91  struct EnuCoor_i path_i[MISSION_PATH_NB];
92  } path;
93 
96 };
97 
98 #define MISSION_CUSTOM_MAX 12 // maximum number of parameters
99 #define MISSION_TYPE_SIZE 6
100 
107 typedef bool (*mission_custom_cb)(uint8_t nb, float *params, enum MissionRunFlag flag);
108 
112 };
113 
118 };
119 
121  enum MissionType type;
122  union {
123  struct _mission_wp mission_wp;
124  struct _mission_circle mission_circle;
125  struct _mission_segment mission_segment;
126  struct _mission_path mission_path;
127  struct _mission_custom mission_custom;
129 
130  float duration;
132 };
133 
137 #ifndef MISSION_ELEMENT_NB
138 #define MISSION_ELEMENT_NB 20
139 #endif
140 
144 #ifndef MISSION_REGISTER_NB
145 #define MISSION_REGISTER_NB 6
146 #endif
147 
148 struct _mission {
151  float element_time;
154 };
155 
156 extern struct _mission mission;
157 
160 extern void mission_init(void);
161 
167 extern bool mission_insert(enum MissionInsertMode insert, struct _mission_element *element);
168 
174 extern bool mission_register(mission_custom_cb cb, char *type);
175 
180 extern bool mission_element_convert(struct _mission_element *el);
181 
185 extern struct _mission_element *mission_get(void);
186 
191 
198 extern bool mission_point_of_lla(struct EnuCoor_f *point, struct LlaCoor_i *lla);
199 
209 extern int mission_run(void);
210 
215 extern void mission_status_report(void);
216 
219 extern int mission_parse_GOTO_WP(uint8_t *buf);
220 extern int mission_parse_GOTO_WP_LLA(uint8_t *buf);
221 extern int mission_parse_CIRCLE(uint8_t *buf);
222 extern int mission_parse_CIRCLE_LLA(uint8_t *buf);
223 extern int mission_parse_SEGMENT(uint8_t *buf);
224 extern int mission_parse_SEGMENT_LLA(uint8_t *buf);
225 extern int mission_parse_PATH(uint8_t *buf);
226 extern int mission_parse_PATH_LLA(uint8_t *buf);
227 extern int mission_parse_CUSTOM(uint8_t *buf);
228 extern int mission_parse_UPDATE(uint8_t *buf);
229 extern int mission_parse_GOTO_MISSION(uint8_t *buf);
230 extern int mission_parse_NEXT_MISSION(uint8_t *buf);
231 extern int mission_parse_END_MISSION(uint8_t *buf);
232 
233 #endif // MISSION_COMMON_H
234 
vector in East North Up coordinates
vector in Latitude, Longitude and Altitude
float params[MISSION_CUSTOM_MAX]
list of parameters
#define MISSION_TYPE_SIZE
struct _mission mission
int mission_parse_END_MISSION(uint8_t *buf)
int mission_parse_GOTO_WP_LLA(uint8_t *buf)
int mission_parse_CUSTOM(uint8_t *buf)
bool(* mission_custom_cb)(uint8_t nb, float *params, enum MissionRunFlag flag)
custom mission element callback
void mission_init(void)
Init mission structure.
int mission_parse_NEXT_MISSION(uint8_t *buf)
int mission_parse_PATH_LLA(uint8_t *buf)
int mission_run(void)
Run mission.
bool mission_insert(enum MissionInsertMode insert, struct _mission_element *element)
Insert a mission element according to the insertion mode.
void mission_status_report(void)
Report mission status.
struct _mission_registered * reg
pointer to a registered custom mission element
union _mission_segment::@286 to
int mission_parse_SEGMENT_LLA(uint8_t *buf)
char type[MISSION_TYPE_SIZE]
mission element identifier (5 char max + 1 \0)
mission_custom_cb cb
navigation/action function callback
uint8_t nb
number of parameters
MissionType
@ MissionCustom
@ MissionCircle
@ MissionWP
@ MissionSegment
@ MissionPath
struct _mission_registered registered[MISSION_REGISTER_NB]
int mission_parse_GOTO_WP(uint8_t *buf)
Parsing functions called when a mission message is received.
int mission_parse_CIRCLE(uint8_t *buf)
MissionRunFlag
@ MissionInit
first exec
@ MissionRun
normal run
@ MissionUpdate
param update
bool mission_element_convert(struct _mission_element *el)
Convert mission element's points format if needed.
struct _mission_element elements[MISSION_ELEMENT_NB]
union _mission_path::@287 path
float element_time
time in second spend in the current element
bool mission_point_of_lla(struct EnuCoor_f *point, struct LlaCoor_i *lla)
Get the ENU component of LLA mission point This function is firmware specific.
union _mission_element::@288 element
int mission_parse_UPDATE(uint8_t *buf)
struct _mission_element * mission_get_from_index(uint8_t index)
Get mission element by index.
int mission_parse_SEGMENT(uint8_t *buf)
union _mission_wp::@283 wp
enum MissionType type
uint8_t index
index of mission element
int mission_parse_GOTO_MISSION(uint8_t *buf)
union _mission_segment::@285 from
#define MISSION_PATH_NB
#define MISSION_REGISTER_NB
Max number of registered nav/action callbacks can be redefined.
#define MISSION_ELEMENT_NB
Max number of elements in the tasks' list can be redefined.
bool mission_register(mission_custom_cb cb, char *type)
Register a new navigation or action callback function.
union _mission_circle::@284 center
uint8_t insert_idx
inserstion index
uint8_t path_idx
struct _mission_element * mission_get(void)
Get current mission element.
MissionInsertMode
@ ReplaceCurrent
replace current element
@ Append
add at the last position
@ ReplaceNexts
replace the next element and remove all the others
@ ReplaceAll
remove all elements and add the new one
@ Prepend
add before the current element
float duration
time to spend in the element (<= 0 to disable)
int mission_parse_PATH(uint8_t *buf)
#define MISSION_CUSTOM_MAX
uint8_t current_idx
current mission element index
int mission_parse_CIRCLE_LLA(uint8_t *buf)
Paparazzi floating point math for geodetic calculations.
vector in East North Up coordinates Units: meters
Paparazzi fixed point math for geodetic calculations.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98