Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
imu_navstik.c File Reference
#include "subsystems/imu.h"
#include "subsystems/abi.h"
#include "mcu_periph/i2c.h"
+ Include dependency graph for imu_navstik.c:

Go to the source code of this file.

Macros

#define NAVSTIK_MAG_I2C_DEV   i2c3
 
#define NAVSTIK_MPU_I2C_DEV   i2c1
 

Functions

void imu_navstik_init (void)
 Navstik IMU initializtion of the MPU-60x0 and HMC58xx. More...
 
void imu_navstik_periodic (void)
 Handle all the periodic tasks of the Navstik IMU components. More...
 
void imu_navstik_event (void)
 Handle all the events of the Navstik IMU components. More...
 

Variables

struct ImuNavstik imu_navstik
 Basic Navstik IMU data. More...
 

Detailed Description

Driver for the Navstik magnetometer, accelerometer and gyroscope

Definition in file imu_navstik.c.

Macro Definition Documentation

◆ NAVSTIK_MAG_I2C_DEV

#define NAVSTIK_MAG_I2C_DEV   i2c3

Definition at line 34 of file imu_navstik.c.

◆ NAVSTIK_MPU_I2C_DEV

#define NAVSTIK_MPU_I2C_DEV   i2c1

Definition at line 39 of file imu_navstik.c.

Function Documentation

◆ imu_navstik_event()

void imu_navstik_event ( void  )

Handle all the events of the Navstik IMU components.

When there is data available convert it to the correct axis and save it in the imu structure.

Definition at line 102 of file imu_navstik.c.

References Imu::accel, Imu::accel_unscaled, Hmc58xx::data, Mpu60x0_I2c::data_accel, Mpu60x0_I2c::data_available, Hmc58xx::data_available, Mpu60x0_I2c::data_rates, get_sys_time_usec(), Imu::gyro, Imu::gyro_unscaled, ImuNavstik::hmc, hmc58xx_event(), imu, IMU_BOARD_ID, imu_navstik, imu_scale_accel(), imu_scale_gyro(), imu_scale_mag(), Imu::mag, Imu::mag_unscaled, ImuNavstik::mpu, mpu60x0_i2c_event(), RATES_COPY, VECT3_COPY, Int32Vect3::x, Int32Vect3::y, and Int32Vect3::z.

+ Here is the call graph for this function:

◆ imu_navstik_init()

void imu_navstik_init ( void  )

◆ imu_navstik_periodic()

void imu_navstik_periodic ( void  )

Handle all the periodic tasks of the Navstik IMU components.

Read the MPU60x0 every periodic call and the HMC58XX every 10th call.

Definition at line 89 of file imu_navstik.c.

References ImuNavstik::hmc, hmc58xx_periodic(), imu_navstik, ImuNavstik::mpu, and mpu60x0_i2c_periodic().

+ Here is the call graph for this function:

Variable Documentation

◆ imu_navstik

struct ImuNavstik imu_navstik

Basic Navstik IMU data.

Definition at line 67 of file imu_navstik.c.

Referenced by imu_navstik_event(), imu_navstik_init(), and imu_navstik_periodic().