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_krooz_memsic.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Sergey Krukowski <softsr@yahoo.de>
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 
32 #ifndef IMU_KROOZ_H
33 #define IMU_KROOZ_H
34 
35 #include "std.h"
36 #include "generated/airframe.h"
37 #include "subsystems/imu.h"
38 
40 #include "peripherals/hmc58xx.h"
41 #include "mcu_periph/spi.h"
42 
43 // Default configuration
44 #if !defined IMU_GYRO_P_SIGN & !defined IMU_GYRO_Q_SIGN & !defined IMU_GYRO_R_SIGN
45 #define IMU_GYRO_P_SIGN 1
46 #define IMU_GYRO_Q_SIGN 1
47 #define IMU_GYRO_R_SIGN 1
48 #endif
49 #if !defined IMU_ACCEL_X_SIGN & !defined IMU_ACCEL_Y_SIGN & !defined IMU_ACCEL_Z_SIGN
50 #define IMU_ACCEL_X_SIGN 1
51 #define IMU_ACCEL_Y_SIGN 1
52 #define IMU_ACCEL_Z_SIGN 1
53 #endif
54 #if !defined IMU_MAG_X_SIGN & !defined IMU_MAG_Y_SIGN & !defined IMU_MAG_Z_SIGN
55 #define IMU_MAG_X_SIGN 1
56 #define IMU_MAG_Y_SIGN 1
57 #define IMU_MAG_Z_SIGN 1
58 #endif
59 
65 #if !defined IMU_GYRO_P_SENS & !defined IMU_GYRO_Q_SENS & !defined IMU_GYRO_R_SENS
66 // FIXME
67 #define IMU_GYRO_P_SENS 0.5454
68 #define IMU_GYRO_P_SENS_NUM 2727
69 #define IMU_GYRO_P_SENS_DEN 5000
70 #define IMU_GYRO_Q_SENS 0.5454
71 #define IMU_GYRO_Q_SENS_NUM 2727
72 #define IMU_GYRO_Q_SENS_DEN 5000
73 #define IMU_GYRO_R_SENS 0.5454
74 #define IMU_GYRO_R_SENS_NUM 2727
75 #define IMU_GYRO_R_SENS_DEN 5000
76 #endif
77 #if !defined IMU_GYRO_P_NEUTRAL & !defined IMU_GYRO_Q_NEUTRAL & !defined IMU_GYRO_R_NEUTRAL
78 #define IMU_GYRO_P_NEUTRAL 0
79 #define IMU_GYRO_Q_NEUTRAL 0
80 #define IMU_GYRO_R_NEUTRAL 0
81 #endif
82 
83 
88 #if !defined IMU_ACCEL_X_SENS & !defined IMU_ACCEL_Y_SENS & !defined IMU_ACCEL_Z_SENS
89 // FIXME
90 #define IMU_ACCEL_X_SENS 0.9197
91 #define IMU_ACCEL_X_SENS_NUM 9197
92 #define IMU_ACCEL_X_SENS_DEN 10000
93 #define IMU_ACCEL_Y_SENS 0.9197
94 #define IMU_ACCEL_Y_SENS_NUM 9197
95 #define IMU_ACCEL_Y_SENS_DEN 10000
96 #define IMU_ACCEL_Z_SENS 0.9197
97 #define IMU_ACCEL_Z_SENS_NUM 9197
98 #define IMU_ACCEL_Z_SENS_DEN 10000
99 #endif
100 #if !defined IMU_ACCEL_X_NEUTRAL & !defined IMU_ACCEL_Y_NEUTRAL & !defined IMU_ACCEL_Z_NEUTRAL
101 #define IMU_ACCEL_X_NEUTRAL 32768
102 #define IMU_ACCEL_Y_NEUTRAL 32768
103 #define IMU_ACCEL_Z_NEUTRAL 32768
104 #endif
105 
106 #ifndef IMU_KROOZ_ACCEL_AVG_FILTER
107 #define IMU_KROOZ_ACCEL_AVG_FILTER 15
108 #endif
109 
110 struct ImuKrooz {
111  volatile bool mpu_eoc;
112  volatile bool hmc_eoc;
113  struct Mpu60x0_I2c mpu;
117  struct Hmc58xx hmc;
118  struct Int32Rates rates_sum;
119  struct Int32Vect3 accel_sum;
120  volatile uint8_t meas_nb;
122  struct Int32Vect3 accel_filtered;
124 };
125 
126 extern struct ImuKrooz imu_krooz;
127 
128 extern void imu_krooz_init(void);
129 extern void imu_krooz_periodic(void);
130 extern void imu_krooz_event(void);
131 extern void imu_krooz_downlink_raw(void);
132 
133 #endif // IMU_KROOZ_H
struct Int32Vect3 accel_filtered
Definition: imu_krooz.h:115
angular rates
volatile bool mpu_eoc
Definition: imu_krooz.h:108
volatile bool hmc_eoc
Definition: imu_krooz.h:109
struct spi_transaction ad7689_trans
SPI transaction structure.
Definition: spi.h:142
void imu_krooz_event(void)
Definition: imu_krooz.c:146
struct Int32Rates rates_sum
Definition: imu_krooz.h:112
volatile uint8_t meas_nb
Definition: imu_krooz.h:114
void imu_krooz_periodic(void)
Definition: imu_krooz.c:98
Architecture independent SPI (Serial Peripheral Interface) API.
volatile uint8_t ad7689_spi_rx_buffer[2]
void imu_krooz_init(void)
Definition: imu_krooz.c:68
struct Uint8Vect3 meas_nb_acc
struct ImuKrooz imu_krooz
Definition: imu_krooz.c:61
Inertial Measurement Unit interface.
int32_t temperature
Definition: imu_krooz.h:116
signed long int32_t
Definition: types.h:19
struct Hmc58xx hmc
Definition: imu_krooz.h:111
Driver for the MPU-60X0 using I2C.
struct Int32Vect3 accel_sum
Definition: imu_krooz.h:113
unsigned char uint8_t
Definition: types.h:14
void imu_krooz_downlink_raw(void)
Definition: imu_krooz.c:137
volatile uint8_t ad7689_spi_tx_buffer[2]