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
gvf_ik.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2016 Hector Garcia de Marina
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
28
#ifndef GVF_IK_H
29
#define GVF_IK_H
30
31
#define GVF_GRAVITY 9.806
32
34
#ifndef GVF_IK_GAMMA_AMPLITUDE
35
#define GVF_IK_GAMMA_AMPLITUDE 0
36
#endif
37
38
#ifndef GVF_IK_GAMMA_OMEGA
39
#define GVF_IK_GAMMA_OMEGA 0
40
#endif
41
43
#ifndef GVF_OCAML_GCS
44
#define GVF_OCAML_GCS true
45
#endif
46
47
#include "
std.h
"
48
#include "
modules/guidance/gvf_common.h
"
49
#include "
modules/guidance/trajectories/gvf_traj.h
"
50
60
typedef
struct
{
61
float
ke
;
62
float
kn
;
63
float
phi
;
64
float
error
;
65
float
error_n
;
66
int8_t
s
;
67
68
float
gamma_amplitude
;
69
float
gamma_omega
;
70
float
gamma
;
71
float
gamma_dot
;
72
}
gvf_ik_con
;
60
typedef
struct
{
…
};
73
74
typedef
struct
{
75
float
n_norm
;
76
float
t_norm
;
77
float
omega_d
;
78
float
omega
;
79
}
gvf_ik_tel
;
74
typedef
struct
{
…
};
80
81
// Extern structs
82
extern
gvf_ik_con
gvf_ik_control
;
83
86
extern
void
gvf_ik_init
(
void
);
87
extern
void
gvf_ik_control_2D
(
float
ke,
float
kn,
float
e,
struct
gvf_grad
*,
struct
gvf_Hess
*);
88
extern
void
gvf_ik_set_direction
(
int8_t
s
);
89
90
#endif
// GVF_IK_H
gvf_common.h
gvf_ik_tel::omega
float omega
Definition
gvf_ik.h:78
gvf_ik_con::gamma
float gamma
Definition
gvf_ik.h:70
gvf_ik_con::gamma_amplitude
float gamma_amplitude
Definition
gvf_ik.h:68
gvf_ik_con::ke
float ke
Definition
gvf_ik.h:61
gvf_ik_con::phi
float phi
Definition
gvf_ik.h:63
gvf_ik_tel::n_norm
float n_norm
Definition
gvf_ik.h:75
gvf_ik_con::gamma_dot
float gamma_dot
Definition
gvf_ik.h:71
gvf_ik_init
void gvf_ik_init(void)
EXTERN FUNCTIONS ----------------------------------------------------—.
Definition
gvf_ik.c:123
gvf_ik_control_2D
void gvf_ik_control_2D(float ke, float kn, float e, struct gvf_grad *, struct gvf_Hess *)
Definition
gvf_ik.c:141
gvf_ik_con::error_n
float error_n
Definition
gvf_ik.h:65
gvf_ik_control
gvf_ik_con gvf_ik_control
Definition
gvf_ik.c:35
gvf_ik_tel::t_norm
float t_norm
Definition
gvf_ik.h:76
gvf_ik_con::kn
float kn
Definition
gvf_ik.h:62
gvf_ik_con::gamma_omega
float gamma_omega
Definition
gvf_ik.h:69
gvf_ik_set_direction
void gvf_ik_set_direction(int8_t s)
Definition
gvf_ik.c:294
gvf_ik_tel::omega_d
float omega_d
Definition
gvf_ik.h:77
gvf_ik_con::error
float error
Definition
gvf_ik.h:64
gvf_ik_con::s
int8_t s
Definition
gvf_ik.h:66
gvf_ik_con
Definition
gvf_ik.h:60
gvf_ik_tel
Definition
gvf_ik.h:74
gvf_traj.h
gvf_Hess
Definition
gvf_traj.h:45
gvf_grad
Definition
gvf_traj.h:39
s
static uint32_t s
Definition
light_scheduler.c:33
std.h
int8_t
signed char int8_t
Typedef defining 8 bit char type.
Definition
vl53l1_types.h:103
sw
airborne
modules
guidance
gvf_ik
gvf_ik.h
Generated on Wed Jun 4 2025 20:46:36 for Paparazzi UAS by
1.9.8