Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
potential.h
Go to the documentation of this file.
1 
7 #ifndef POTENTIAL_H
8 #define POTENTIAL_H
9 
12 
13 struct force_ {
14  float east;
15  float north;
16  float alt;
17  float speed;
18  float climb;
19 };
20 
21 extern struct force_ potential_force;
22 
23 extern float force_pos_gain;
24 extern float force_speed_gain;
25 extern float force_climb_gain;
26 
27 extern void potential_init(void);
28 
29 extern int potential_task(void);
30 
31 #endif /* POTENTIAL_H */
traffic_info.h
force_::east
float east
Definition: potential.h:14
force_::climb
float climb
Definition: potential.h:18
force_pos_gain
float force_pos_gain
Definition: potential.c:23
force_
Definition: potential.h:13
force_speed_gain
float force_speed_gain
Definition: potential.c:24
force_::speed
float speed
Definition: potential.h:17
potential_init
void potential_init(void)
Definition: potential.c:43
potential_task
int potential_task(void)
Definition: potential.c:58
nav.h
force_climb_gain
float force_climb_gain
Definition: potential.c:25
force_::north
float north
Definition: potential.h:15
potential_force
struct force_ potential_force
Definition: potential.c:21
force_::alt
float alt
Definition: potential.h:16