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
19 lines
515 B
XML
19 lines
515 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="imu_aspirin_i2c_v1.5" dir="sensors">
|
|
<doc>
|
|
<description>
|
|
Aspirin v1.5 IMU.
|
|
- Accelerometer: ADXL345 via I2C
|
|
- Gyroscope: ITG3200 via I2C
|
|
- Magnetometer: HMC58xx via I2C
|
|
For configuration see the imu_aspirin_common module
|
|
</description>
|
|
</doc>
|
|
<autoload name="imu_aspirin_i2c_common"/>
|
|
<autoload name="imu_nps"/>
|
|
<makefile target="!sim|nps|fbw">
|
|
<define name="IMU_ASPIRIN_VERSION_1_5"/>
|
|
</makefile>
|
|
</module>
|