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
imu_apogee.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2011 Gautier Hattenberger
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 IMU_APOGEE_H
31 #define IMU_APOGEE_H
32 
33 #include "std.h"
34 #include "generated/airframe.h"
35 #include "subsystems/imu.h"
36 #if APOGEE_USE_MPU9150
37 #include "peripherals/ak8975.h"
38 #endif
39 
41 
42 // Default configuration
43 #if !defined IMU_GYRO_P_SIGN & !defined IMU_GYRO_Q_SIGN & !defined IMU_GYRO_R_SIGN
44 #define IMU_GYRO_P_SIGN 1
45 #define IMU_GYRO_Q_SIGN 1
46 #define IMU_GYRO_R_SIGN 1
47 #endif
48 #if !defined IMU_ACCEL_X_SIGN & !defined IMU_ACCEL_Y_SIGN & !defined IMU_ACCEL_Z_SIGN
49 #define IMU_ACCEL_X_SIGN 1
50 #define IMU_ACCEL_Y_SIGN 1
51 #define IMU_ACCEL_Z_SIGN 1
52 #endif
53 
59 #if !defined IMU_GYRO_P_SENS & !defined IMU_GYRO_Q_SENS & !defined IMU_GYRO_R_SENS
60 // FIXME
61 #define IMU_GYRO_P_SENS 2.17953
62 #define IMU_GYRO_P_SENS_NUM 18271
63 #define IMU_GYRO_P_SENS_DEN 8383
64 #define IMU_GYRO_Q_SENS 2.17953
65 #define IMU_GYRO_Q_SENS_NUM 18271
66 #define IMU_GYRO_Q_SENS_DEN 8383
67 #define IMU_GYRO_R_SENS 2.17953
68 #define IMU_GYRO_R_SENS_NUM 18271
69 #define IMU_GYRO_R_SENS_DEN 8383
70 #endif
71 #if !defined IMU_GYRO_P_NEUTRAL & !defined IMU_GYRO_Q_NEUTRAL & !defined IMU_GYRO_R_NEUTRAL
72 #define IMU_GYRO_P_NEUTRAL 0
73 #define IMU_GYRO_Q_NEUTRAL 0
74 #define IMU_GYRO_R_NEUTRAL 0
75 #endif
76 
77 
82 #if !defined IMU_ACCEL_X_SENS & !defined IMU_ACCEL_Y_SENS & !defined IMU_ACCEL_Z_SENS
83 // FIXME
84 #define IMU_ACCEL_X_SENS 2.4525
85 #define IMU_ACCEL_X_SENS_NUM 981
86 #define IMU_ACCEL_X_SENS_DEN 400
87 #define IMU_ACCEL_Y_SENS 2.4525
88 #define IMU_ACCEL_Y_SENS_NUM 981
89 #define IMU_ACCEL_Y_SENS_DEN 400
90 #define IMU_ACCEL_Z_SENS 2.4525
91 #define IMU_ACCEL_Z_SENS_NUM 981
92 #define IMU_ACCEL_Z_SENS_DEN 400
93 #endif
94 #if !defined IMU_ACCEL_X_NEUTRAL & !defined IMU_ACCEL_Y_NEUTRAL & !defined IMU_ACCEL_Z_NEUTRAL
95 #define IMU_ACCEL_X_NEUTRAL 0
96 #define IMU_ACCEL_Y_NEUTRAL 0
97 #define IMU_ACCEL_Z_NEUTRAL 0
98 #endif
99 
100 struct ImuApogee {
101  struct Mpu60x0_I2c mpu;
102 #if APOGEE_USE_MPU9150
103  struct Ak8975 ak;
104 #endif
105 };
106 
107 extern struct ImuApogee imu_apogee;
108 
109 extern void imu_apogee_init(void);
110 extern void imu_apogee_periodic(void);
111 extern void imu_apogee_event(void);
112 extern void imu_apogee_downlink_raw(void);
113 
114 #endif // IMU_APOGEE_H
struct Mpu60x0_I2c mpu
Definition: imu_apogee.h:101
void imu_apogee_downlink_raw(void)
Definition: imu_apogee.c:136
Definition: ak8975.h:59
void imu_apogee_periodic(void)
Definition: imu_apogee.c:123
void imu_apogee_event(void)
Definition: imu_apogee.c:145
Inertial Measurement Unit interface.
Driver for the MPU-60X0 using I2C.
Driver for the AKM AK8975 magnetometer.
void imu_apogee_init(void)
Definition: imu_apogee.c:101
struct ImuApogee imu_apogee
Definition: imu_apogee.c:92