Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
ins_ekf2.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Freek van Tienen <freek.v.tienen@gmail.com>
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 
29 #ifndef INS_EKF2_H
30 #define INS_EKF2_H
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 
36 #include "subsystems/ahrs.h"
37 #include "subsystems/ins.h"
38 
41 };
42 
43 extern void ins_ekf2_init(void);
44 extern void ins_ekf2_update(void);
45 extern void ins_ekf2_change_param(int32_t unk);
46 extern struct ekf2_parameters_t ekf2_params;
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif /* INS_EKF2_H */
ins.h
ekf2_params
struct ekf2_parameters_t ekf2_params
Definition: ins_ekf2.cpp:150
ins_ekf2_update
void ins_ekf2_update(void)
Definition: ins_ekf2.cpp:289
ekf2_parameters_t
Definition: ins_ekf2.h:39
ins_ekf2_change_param
void ins_ekf2_change_param(int32_t unk)
Definition: ins_ekf2.cpp:364
ekf2_parameters_t::mag_fusion_type
int32_t mag_fusion_type
Definition: ins_ekf2.h:40
ahrs.h
int32_t
signed long int32_t
Definition: types.h:19
ins_ekf2_init
void ins_ekf2_init(void)
Definition: ins_ekf2.cpp:248