Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
m
n
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
paparazzi.h
Go to the documentation of this file.
1
#ifndef PAPARAZZI_H
2
#define PAPARAZZI_H
3
4
#include <
inttypes.h
>
5
6
typedef
int16_t
pprz_t
;
/* type of commands */
7
8
#define MAX_PPRZ 9600
9
#define MIN_PPRZ -MAX_PPRZ
10
11
#define TRIM_PPRZ(pprz) (pprz < MIN_PPRZ ? MIN_PPRZ : \
12
(pprz > MAX_PPRZ ? MAX_PPRZ : \
13
pprz))
14
#define TRIM_UPPRZ(pprz) (pprz < 0 ? 0 : \
15
(pprz > MAX_PPRZ ? MAX_PPRZ : \
16
pprz))
17
18
#if defined FBW && defined AP
19
#define SINGLE_MCU 1
20
#endif
21
22
#endif
/* PAPARAZZI_H */
pprz_t
int16_t pprz_t
Definition:
paparazzi.h:6
int16_t
signed short int16_t
Definition:
types.h:17
inttypes.h
sw
airborne
paparazzi.h
Generated on Tue Feb 1 2022 13:51:17 for Paparazzi UAS by
1.8.17