33 #ifndef BEBOP_MAG_I2C_DEV
34 #define BEBOP_MAG_I2C_DEV i2c1
38 #ifndef BEBOP_MPU_I2C_DEV
39 #define BEBOP_MPU_I2C_DEV i2c2
43 #if !defined BEBOP_LOWPASS_FILTER && !defined BEBOP_SMPLRT_DIV
44 #if (PERIODIC_FREQUENCY == 60) || (PERIODIC_FREQUENCY == 120)
48 #define BEBOP_LOWPASS_FILTER MPU60X0_DLPF_42HZ
49 #define BEBOP_SMPLRT_DIV 9
50 PRINT_CONFIG_MSG(
"Gyro/Accel output rate is 100Hz at 1kHz internal sampling")
51 #elif PERIODIC_FREQUENCY == 512
55 #define BEBOP_LOWPASS_FILTER MPU60X0_DLPF_256HZ
56 #define BEBOP_SMPLRT_DIV 3
60 PRINT_CONFIG_VAR(BEBOP_SMPLRT_DIV)
61 PRINT_CONFIG_VAR(BEBOP_LOWPASS_FILTER)
63 #ifndef BEBOP_GYRO_RANGE
64 #define BEBOP_GYRO_RANGE MPU60X0_GYRO_RANGE_1000
68 #ifndef BEBOP_ACCEL_RANGE
69 #define BEBOP_ACCEL_RANGE MPU60X0_ACCEL_RANGE_8G
137 #else //BEBOP regular first verion
void mpu60x0_i2c_event(struct Mpu60x0_I2c *mpu)
void imu_scale_gyro(struct Imu *_imu)
struct Mpu60x0_I2c mpu
The MPU gyro/accel device.
void mpu60x0_i2c_init(struct Mpu60x0_I2c *mpu, struct i2c_periph *i2c_p, uint8_t addr)
void imu_scale_accel(struct Imu *_imu)
struct Mpu60x0Config config
union Mpu60x0_I2c::@41 data_accel
void imu_impl_init(void)
Navstik IMU initializtion of the MPU-60x0 and HMC58xx.
struct ImuBebop imu_bebop
Basic Navstik IMU data.
#define VECT3_ASSIGN(_a, _x, _y, _z)
#define RATES_ASSIGN(_ra, _p, _q, _r)
Main include for ABI (AirBorneInterface).
uint8_t smplrt_div
Sample rate divider.
#define BEBOP_MPU_I2C_DEV
void ak8963_init(struct Ak8963 *ak, struct i2c_periph *i2c_p, uint8_t addr)
Initialize AK8963 struct.
enum Mpu60x0GyroRanges gyro_range
deg/s Range
enum Mpu60x0AccelRanges accel_range
g Range
union Mpu60x0_I2c::@42 data_rates
enum Mpu60x0DLPF dlpf_cfg
Digital Low Pass Filter.
static uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
struct Int32Vect3 mag_unscaled
unscaled magnetometer measurements
struct Int32Rates gyro_unscaled
unscaled gyroscope measurements
struct Int32Vect3 accel
accelerometer measurements in m/s^2 in BFP with INT32_ACCEL_FRAC
void imu_bebop_event(void)
Handle all the events of the Navstik IMU components.
volatile bool_t data_available
data ready flag
struct Imu imu
global IMU state
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
struct Int32Vect3 mag
magnetometer measurements scaled to 1 in BFP with INT32_MAG_FRAC
Inertial Measurement Unit interface.
void imu_periodic(void)
Handle all the periodic tasks of the Navstik IMU components.
void ak8963_event(struct Ak8963 *ak)
void imu_scale_mag(struct Imu *_imu)
static void ak8963_periodic(struct Ak8963 *ak)
convenience function: read or start configuration if not already initialized
struct Int32Vect3 accel_unscaled
unscaled accelerometer measurements
static void mpu60x0_i2c_periodic(struct Mpu60x0_I2c *mpu)
convenience function: read or start configuration if not already initialized
#define BEBOP_MAG_I2C_DEV
Everything that is in the bebop IMU.
#define BEBOP_ACCEL_RANGE
struct Ak8963 ak
The AK8963 mag.
volatile bool_t data_available
data ready flag
struct Int32Rates gyro
gyroscope measurements in rad/s in BFP with INT32_RATE_FRAC
Architecture independent I2C (Inter-Integrated Circuit Bus) API.