Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Toggle main menu visibility
Main Page
Related Pages
Topics
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
Enumerator
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
q
r
s
t
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
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
Loading...
Searching...
No Matches
shift_tracking.h
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
29
#ifndef SHIFT_TRACKING_H
30
#define SHIFT_TRACKING_H
31
32
#include "
std.h
"
33
34
struct
shift_tracking_t
{
35
float
kp
;
36
float
kd
;
37
float
ki
;
38
float
shift
;
39
};
34
struct
shift_tracking_t
{
…
};
40
41
extern
struct
shift_tracking_t
shift_tracking
;
42
45
extern
void
shift_tracking_init
(
void
);
46
53
extern
void
shift_tracking_run
(
float
*
shift
);
54
59
extern
void
shift_tracking_reset
(
void
);
60
63
#define shift_tracking_SetKp(_v) { shift_tracking.kp = _v; shift_tracking_update_gains(); }
64
#define shift_tracking_SetKd(_v) { shift_tracking.kd = _v; shift_tracking_update_gains(); }
65
#define shift_tracking_SetKi(_v) { shift_tracking.ki = _v; shift_tracking_update_gains(); }
66
extern
void
shift_tracking_update_gains
(
void
);
67
68
#endif
69
shift_tracking_t::ki
float ki
integral gain
Definition
shift_tracking.h:37
shift_tracking_update_gains
void shift_tracking_update_gains(void)
Definition
shift_tracking.c:163
shift_tracking_t::kp
float kp
proportional gain
Definition
shift_tracking.h:35
shift_tracking_run
void shift_tracking_run(float *shift)
run function
Definition
shift_tracking.c:136
shift_tracking_t::shift
float shift
shift command
Definition
shift_tracking.h:38
shift_tracking_init
void shift_tracking_init(void)
init function
Definition
shift_tracking.c:108
shift_tracking
struct shift_tracking_t shift_tracking
Definition
shift_tracking.c:75
shift_tracking_t::kd
float kd
derivative gain
Definition
shift_tracking.h:36
shift_tracking_reset
void shift_tracking_reset(void)
reset function
Definition
shift_tracking.c:127
shift_tracking_t
Definition
shift_tracking.h:34
std.h
sw
airborne
modules
ctrl
shift_tracking.h
Generated on Fri Mar 14 2025 12:17:59 for Paparazzi UAS by
1.9.8