Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
imu_mpu60x0_i2c module

IMU with MPU60x0 via I2C.

No detailed description...

Example for airframe file

Add to your firmware section: This example contains all possible configuration options, not all of them are mandatory!

1 <module name="imu_mpu60x0_i2c">
2  <define name="IMU_MPU60X0_LOWPASS_FILTER" value="MPU60X0_DLPF_256HZ" />
3  <define name="IMU_MPU60X0_SMPLRT_DIV" value="3" />
4  <define name="IMU_MPU60X0_GYRO_RANGE" value="MPU60X0_GYRO_RANGE_2000" />
5  <define name="IMU_MPU60X0_ACCEL_RANGE" value="MPU60X0_ACCEL_RANGE_16G" />
6  <define name="IMU_MPU60X0_I2C_ADDR" value="MPU60X0_ADDR" />
7  <configure name="IMU_MPU60X0_I2C_DEV" value="i2c1" />
8 </module>

Module configuration options

Configure Options

  • name: IMU_MPU60X0_I2C_DEV value: i2c1
    Description: I2C device to use for MPU60x0

Define Options

  • name: IMU_MPU60X0_LOWPASS_FILTER value: MPU60X0_DLPF_256HZ
    Description: DigitalLowPassFilter setting of the MPU
  • name: IMU_MPU60X0_SMPLRT_DIV value: 3
    Description: sample rate divider setting of the MPU
  • name: IMU_MPU60X0_GYRO_RANGE value: MPU60X0_GYRO_RANGE_2000
    Description: gyroscope range setting of the MPU
  • name: IMU_MPU60X0_ACCEL_RANGE value: MPU60X0_ACCEL_RANGE_16G
    Description: accelerometer range setting of the MPU
  • name: IMU_MPU60X0_I2C_ADDR value: MPU60X0_ADDR
    Description: I2C address of the MPU

Auto-loaded modules

The following modules are automatically loaded (just as if you had added them in the airframe file)

Module functions

Init Functions

These initialization functions are called once on startup.

Event Functions

These event functions are called in each cycle of the module event loop.

Periodic Functions

These functions are called periodically at the specified frequency from the module periodic loop.

  • imu_mpu_i2c_periodic()
    • Running at maximum module frequency.
    • Autorun: LOCK
      Periodic function automatically starts after init and can't be stopped.

Files

Header Files

The following headers are automatically included in modules.h

Source Files

Raw imu_mpu60x0_i2c.xml file:

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_mpu60x0_i2c" dir="imu">
<doc>
<description>
IMU with MPU60x0 via I2C.
</description>
<configure name="IMU_MPU60X0_I2C_DEV" value="i2c1" description="I2C device to use for MPU60x0"/>
<define name="IMU_MPU60X0_LOWPASS_FILTER" value="MPU60X0_DLPF_256HZ" description="DigitalLowPassFilter setting of the MPU"/>
<define name="IMU_MPU60X0_SMPLRT_DIV" value="3" description="sample rate divider setting of the MPU"/>
<define name="IMU_MPU60X0_GYRO_RANGE" value="MPU60X0_GYRO_RANGE_2000" description="gyroscope range setting of the MPU"/>
<define name="IMU_MPU60X0_ACCEL_RANGE" value="MPU60X0_ACCEL_RANGE_16G" description="accelerometer range setting of the MPU"/>
<define name="IMU_MPU60X0_I2C_ADDR" value="MPU60X0_ADDR" description="I2C address of the MPU"/>
</doc>
<autoload name="imu_common"/>
<autoload name="imu_nps"/>
<header>
<file name="imu_mpu60x0_i2c.h" dir="subsystems/imu"/>
</header>
<init fun="imu_mpu_i2c_init()"/>
<periodic fun="imu_mpu_i2c_periodic()"/>
<event fun="imu_mpu_i2c_event()"/>
<makefile target="!sim|nps|fbw">
<configure name="IMU_MPU60X0_I2C_DEV" default="i2c1" case="lower|upper"/>
<define name="IMU_MPU60X0_I2C_DEV" value="$(IMU_MPU60X0_I2C_DEV_LOWER)"/>
<define name="USE_$(IMU_MPU60X0_I2C_DEV_UPPER)"/>
<define name="IMU_TYPE_H" value="subsystems/imu/imu_mpu60x0_i2c.h" type="string"/>
<file name="mpu60x0.c" dir="peripherals"/>
<file name="mpu60x0_i2c.c" dir="peripherals"/>
<file name="imu_mpu60x0_i2c.c" dir="subsystems/imu"/>
</makefile>
</module>