mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
17d32772c0
* [imu] convert imu subsystems to modules Also - get rid of explicit imu init|event|periodic calls in main - each imu implementation has their own imu_x_init/event/periodic * [imu] fix some imu modules * [imu] fix bad paths * [imu] add imu_common module that every implementation autoloads and put body_to_imu settings in imu_common module * [imu] fix imu_ardrone2 * [conf] add imu_common settings module in conf_example and conf_tests
43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="imu_ppzuav" dir="imu">
|
|
<doc>
|
|
<description>
|
|
PPZUAV IMU.
|
|
- Accelerometer: ADXL345 via I2C
|
|
- Gyroscope: ITG3200 via I2C
|
|
- Magnetometer: HMC58xx via I2C
|
|
</description>
|
|
<configure name="IMU_PPZUAV_I2C_DEV" value="i2c2" description="I2C device to use"/>
|
|
<section name="IMU" prefix="IMU_">
|
|
<define name="MAG_X_NEUTRAL" value="2358"/>
|
|
<define name="MAG_Y_NEUTRAL" value="2362"/>
|
|
<define name="MAG_Z_NEUTRAL" value="2119"/>
|
|
|
|
<define name="MAG_X_SENS" value="3.4936416" integer="16"/>
|
|
<define name="MAG_Y_SENS" value="3.607713" integer="16"/>
|
|
<define name="MAG_Z_SENS" value="4.90788848" integer="16"/>
|
|
</section>
|
|
</doc>
|
|
<autoload name="imu_common"/>
|
|
<autoload name="imu_nps"/>
|
|
<header>
|
|
<file name="imu_ppzuav.h" dir="subsystems/imu"/>
|
|
</header>
|
|
<init fun="imu_ppzuav_init()"/>
|
|
<periodic fun="imu_ppzuav_periodic()"/>
|
|
<event fun="imu_ppzuav_event()"/>
|
|
<makefile target="!sim|nps|fbw">
|
|
<configure name="IMU_PPZUAV_I2C_DEV" default="i2c2" case="lower|upper"/>
|
|
<define name="IMU_PPZUAV_I2C_DEV" value="$(IMU_PPZUAV_I2C_DEV_LOWER)"/>
|
|
<define name="USE_$(IMU_PPZUAV_I2C_DEV_UPPER)"/>
|
|
|
|
<define name="IMU_TYPE_H" value="imu/imu_ppzuav.h" type="string"/>
|
|
|
|
<file name="adxl345_i2c.c" dir="peripherals"/>
|
|
<file name="itg3200.c" dir="peripherals"/>
|
|
<file name="hmc58xx.c" dir="peripherals"/>
|
|
<file name="imu_ppzuav.c" dir="subsystems/imu"/>
|
|
</makefile>
|
|
</module>
|