Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
imu_mpu60x0_i2c.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013-2015 Felix Ruess <felix.ruess@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 
27 #include <math.h>
29 #include "modules/imu/imu.h"
30 #include "modules/core/abi.h"
31 #include "mcu_periph/i2c.h"
32 #include "led.h"
33 #include "generated/modules.h"
34 
35 /* MPU60x0 gyro/accel internal lowpass frequency */
36 #if !defined IMU_MPU60X0_LOWPASS_FILTER && !defined IMU_MPU60X0_SMPLRT_DIV
37 #if (PERIODIC_FREQUENCY == 60) || (PERIODIC_FREQUENCY == 120)
38 /* Accelerometer: Bandwidth 44Hz, Delay 4.9ms
39  * Gyroscope: Bandwidth 42Hz, Delay 4.8ms sampling 1kHz
40  */
41 #define IMU_MPU60X0_LOWPASS_FILTER MPU60X0_DLPF_42HZ
42 #define IMU_MPU60X0_SMPLRT_DIV 9
43 PRINT_CONFIG_MSG("Gyro/Accel output rate is 100Hz at 1kHz internal sampling")
44 #elif PERIODIC_FREQUENCY == 512
45 /* Accelerometer: Bandwidth 260Hz, Delay 0ms
46  * Gyroscope: Bandwidth 256Hz, Delay 0.98ms sampling 8kHz
47  */
48 #define IMU_MPU60X0_LOWPASS_FILTER MPU60X0_DLPF_256HZ
49 #define IMU_MPU60X0_SMPLRT_DIV 3
50 PRINT_CONFIG_MSG("Gyro/Accel output rate is 2kHz at 8kHz internal sampling")
51 #else
52 #error Non-default PERIODIC_FREQUENCY: please define IMU_MPU60X0_LOWPASS_FILTER and IMU_MPU60X0_SMPLRT_DIV.
53 #endif
54 #endif
55 PRINT_CONFIG_VAR(IMU_MPU60X0_LOWPASS_FILTER)
56 PRINT_CONFIG_VAR(IMU_MPU60X0_SMPLRT_DIV)
57 
58 PRINT_CONFIG_VAR(IMU_MPU60X0_GYRO_RANGE)
59 PRINT_CONFIG_VAR(IMU_MPU60X0_ACCEL_RANGE)
60 
61 #ifndef IMU_MPU60X0_I2C_ADDR
62 #define IMU_MPU60X0_I2C_ADDR MPU60X0_ADDR
63 #endif
64 
65 struct ImuMpu60x0 imu_mpu_i2c;
66 
67 void imu_mpu_i2c_init(void)
68 {
69  mpu60x0_i2c_init(&imu_mpu_i2c.mpu, &(IMU_MPU60X0_I2C_DEV), IMU_MPU60X0_I2C_ADDR);
70  // change the default configuration
71  imu_mpu_i2c.mpu.config.smplrt_div = IMU_MPU60X0_SMPLRT_DIV;
72  imu_mpu_i2c.mpu.config.dlpf_cfg = IMU_MPU60X0_LOWPASS_FILTER;
75 
76  // Set the default scaling
79 }
80 
82 {
84 }
85 
87 {
88  uint32_t now_ts = get_sys_time_usec();
89 
90  // If the MPU60X0 I2C transaction has succeeded: convert the data
93  AbiSendMsgIMU_GYRO_RAW(IMU_MPU60X0_ID, now_ts, &imu_mpu_i2c.mpu.data_rates.rates, 1, IMU_MPU_I2C_PERIODIC_FREQ, imu_mpu_i2c.mpu.temp);
94  AbiSendMsgIMU_ACCEL_RAW(IMU_MPU60X0_ID, now_ts, &imu_mpu_i2c.mpu.data_accel.vect, 1, IMU_MPU_I2C_PERIODIC_FREQ, imu_mpu_i2c.mpu.temp);
96  }
97 }
Main include for ABI (AirBorneInterface).
#define IMU_MPU60X0_ID
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:71
Architecture independent I2C (Inter-Integrated Circuit Bus) API.
void imu_set_defaults_accel(uint8_t abi_id, const struct Int32RMat *imu_to_sensor, const struct Int32Vect3 *neutral, const struct Int32Vect3 *scale)
Set the defaults for a accel sensor WARNING: Should be called before sensor is publishing messages to...
Definition: imu.c:521
void imu_set_defaults_gyro(uint8_t abi_id, const struct Int32RMat *imu_to_sensor, const struct Int32Rates *neutral, const struct Int32Rates *scale)
Set the defaults for a gyro sensor WARNING: Should be called before sensor is publishing messages to ...
Definition: imu.c:491
Inertial Measurement Unit interface.
void imu_mpu_i2c_init(void)
void imu_mpu_i2c_periodic(void)
#define IMU_MPU60X0_I2C_ADDR
void imu_mpu_i2c_event(void)
struct ImuMpu60x0 imu_mpu_i2c
Driver for IMU with only MPU60x0 via I2C.
#define IMU_MPU60X0_ACCEL_RANGE
struct Mpu60x0_I2c mpu
#define IMU_MPU60X0_GYRO_RANGE
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
arch independent LED (Light Emitting Diodes) API
const struct Int32Rates MPU60X0_GYRO_SENS_FRAC[4][2]
Definition: mpu60x0.c:38
const struct Int32Vect3 MPU60X0_ACCEL_SENS_FRAC[4][2]
Definition: mpu60x0.c:56
uint8_t smplrt_div
Sample rate divider.
Definition: mpu60x0.h:140
enum Mpu60x0DLPF dlpf_cfg
Digital Low Pass Filter.
Definition: mpu60x0.h:141
enum Mpu60x0AccelRanges accel_range
g Range
Definition: mpu60x0.h:144
enum Mpu60x0GyroRanges gyro_range
deg/s Range
Definition: mpu60x0.h:143
void mpu60x0_i2c_init(struct Mpu60x0_I2c *mpu, struct i2c_periph *i2c_p, uint8_t addr)
Definition: mpu60x0_i2c.c:31
void mpu60x0_i2c_event(struct Mpu60x0_I2c *mpu)
Definition: mpu60x0_i2c.c:82
volatile bool data_available
data ready flag
Definition: mpu60x0_i2c.h:57
static void mpu60x0_i2c_periodic(struct Mpu60x0_I2c *mpu)
convenience function: read or start configuration if not already initialized
Definition: mpu60x0_i2c.h:79
union Mpu60x0_I2c::@335 data_rates
float temp
temperature in degrees Celcius
Definition: mpu60x0_i2c.h:66
struct Mpu60x0Config config
Definition: mpu60x0_i2c.h:68
union Mpu60x0_I2c::@334 data_accel
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78