37 #define MPU9250_DEFAULT_SMPLRT_DIV 0
39 #define MPU9250_DEFAULT_FS_SEL MPU9250_GYRO_RANGE_1000
41 #define MPU9250_DEFAULT_AFS_SEL MPU9250_ACCEL_RANGE_8G
43 #define MPU9250_DEFAULT_DLPF_ACCEL_CFG MPU9250_DLPF_ACCEL_41HZ
45 #define MPU9250_DEFAULT_DLPF_GYRO_CFG MPU9250_DLPF_GYRO_41HZ
47 #define MPU9250_DEFAULT_INT_CFG 1
49 #define MPU9250_DEFAULT_CLK_SEL 1
52 #ifndef MPU9250_I2C_NB_SLAVES
53 #define MPU9250_I2C_NB_SLAVES 5
61 #define MPU9250_GYRO_SENS_250 0.544883
62 #define MPU9250_GYRO_SENS_250_NUM 19327
63 #define MPU9250_GYRO_SENS_250_DEN 35470
64 #define MPU9250_GYRO_SENS_500 1.08977
65 #define MPU9250_GYRO_SENS_500_NUM 57663
66 #define MPU9250_GYRO_SENS_500_DEN 52913
67 #define MPU9250_GYRO_SENS_1000 2.17953
68 #define MPU9250_GYRO_SENS_1000_NUM 18271
69 #define MPU9250_GYRO_SENS_1000_DEN 8383
70 #define MPU9250_GYRO_SENS_2000 4.35906
71 #define MPU9250_GYRO_SENS_2000_NUM 36542
72 #define MPU9250_GYRO_SENS_2000_DEN 8383
84 #define MPU9250_ACCEL_SENS_2G 0.613125
85 #define MPU9250_ACCEL_SENS_2G_NUM 981
86 #define MPU9250_ACCEL_SENS_2G_DEN 1600
87 #define MPU9250_ACCEL_SENS_4G 1.22625
88 #define MPU9250_ACCEL_SENS_4G_NUM 981
89 #define MPU9250_ACCEL_SENS_4G_DEN 800
90 #define MPU9250_ACCEL_SENS_8G 2.4525
91 #define MPU9250_ACCEL_SENS_8G_NUM 981
92 #define MPU9250_ACCEL_SENS_8G_DEN 400
93 #define MPU9250_ACCEL_SENS_16G 4.905
94 #define MPU9250_ACCEL_SENS_16G_NUM 981
95 #define MPU9250_ACCEL_SENS_16G_DEN 200
enum Mpu9250DLPFGyro dlpf_gyro_cfg
Digital Low Pass Filter for gyroscope.
uint8_t clk_sel
Clock select.
Mpu9250I2cSlaveConfigure configure
const struct Int32Vect3 MPU9250_ACCEL_SENS_FRAC[4][2]
void(* Mpu9250ConfigSet)(void *mpu, uint8_t _reg, uint8_t _val)
Configuration function prototype.
bool(* Mpu9250I2cSlaveConfigure)(Mpu9250ConfigSet mpu_set, void *mpu)
function prototype for configuration of a single I2C slave
uint8_t nb_slave_init
number of already configured/initialized slaves
void mpu9250_send_config(Mpu9250ConfigSet mpu_set, void *mpu, struct Mpu9250Config *config)
Configuration sequence called once before normal use.
uint8_t i2c_mst_delay
MPU I2C slaves delayed sample rate.
enum Mpu9250MstClk i2c_mst_clk
MPU I2C master clock speed.
const float MPU9250_GYRO_SENS[4]
uint8_t nb_slaves
number of used I2C slaves
enum Mpu9250GyroRanges gyro_range
deg/s Range
uint8_t nb_bytes
number of bytes to read starting with MPU9250_REG_INT_STATUS
#define MPU9250_I2C_NB_SLAVES
bool i2c_bypass
Bypass MPU I2C.
const struct Int32Rates MPU9250_GYRO_SENS_FRAC[4][2]
const float MPU9250_ACCEL_SENS[4]
enum Mpu9250DLPFAccel dlpf_accel_cfg
Digital Low Pass Filter for accelerometer.
void mpu9250_set_default_config(struct Mpu9250Config *c)
uint8_t smplrt_div
Sample rate divider.
enum Mpu9250ConfStatus init_status
init status
enum Mpu9250AccelRanges accel_range
g Range
bool mpu9250_configure_i2c_slaves(Mpu9250ConfigSet mpu_set, void *mpu)
Configure I2C slaves of the MPU.
struct Mpu9250I2cSlave slaves[MPU9250_I2C_NB_SLAVES]
I2C slaves.
@ MPU9250_CONF_USER_RESET
@ MPU9250_CONF_INT_ENABLE
@ MPU9250_CONF_I2C_SLAVES
@ MPU9250_CONF_DLPF_ACCEL
bool drdy_int_enable
Enable Data Ready Interrupt.
bool initialized
config done flag
Register and address definitions for MPU-9250.
Mpu9250DLPFGyro
Digital Low Pass Filter Options.
Mpu9250GyroRanges
Selectable gyro range.
Mpu9250MstClk
I2C Master clock.
Mpu9250AccelRanges
Selectable accel range.
Paparazzi fixed point algebra.
static const struct usb_config_descriptor config
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.