Paparazzi UAS  v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ahrs_int_cmpl_euler.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2010 The Paparazzi Team
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 
30 #ifndef AHRS_INT_CMPL_EULER_H
31 #define AHRS_INT_CMPL_EULER_H
32 
33 #include "subsystems/ahrs.h"
34 #include "std.h"
35 #include "math/pprz_algebra_int.h"
37 
41 };
42 
52  float mag_offset;
53 
55 
57  bool is_aligned;
58 };
59 
60 extern struct AhrsIntCmplEuler ahrs_ice;
61 
62 extern void ahrs_ice_init(void);
64 extern void ahrs_ice_set_body_to_imu_quat(struct FloatQuat *q_b2i);
65 extern bool ahrs_ice_align(struct Int32Rates *lp_gyro, struct Int32Vect3 *lp_accel,
66  struct Int32Vect3 *lp_mag);
67 extern void ahrs_ice_propagate(struct Int32Rates *gyro);
68 extern void ahrs_ice_update_accel(struct Int32Vect3 *accel);
69 extern void ahrs_ice_update_mag(struct Int32Vect3 *mag);
70 
71 #endif /* AHRS_INT_CMPL_EULER_H */
angular rates
struct Int32Eulers ltp_to_imu_euler
struct AhrsIntCmplEuler ahrs_ice
Dispatcher to register actual AHRS implementations.
void ahrs_ice_propagate(struct Int32Rates *gyro)
void ahrs_ice_update_accel(struct Int32Vect3 *accel)
Roation quaternion.
void ahrs_ice_set_body_to_imu(struct OrientationReps *body_to_imu)
void ahrs_ice_update_mag(struct Int32Vect3 *mag)
euler angles
struct Int32Eulers measurement
void ahrs_ice_init(void)
struct Int32Eulers measure
struct Int32Eulers hi_res_euler
AhrsICEStatus
signed long int32_t
Definition: types.h:19
struct OrientationReps body_to_imu
struct Int32Rates imu_rate
enum AhrsICEStatus status
static struct OrientationReps body_to_imu
Definition: ins_alt_float.c:93
bool ahrs_ice_align(struct Int32Rates *lp_gyro, struct Int32Vect3 *lp_accel, struct Int32Vect3 *lp_mag)
void ahrs_ice_set_body_to_imu_quat(struct FloatQuat *q_b2i)
Generic orientation representation and conversions.
struct Int32Rates gyro_bias
struct Int32Eulers residual
Paparazzi fixed point algebra.