mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
62646d68de
Add two new items in module's dependency: - recommends: a recommended module tells the sorting algo that if the module is found, it should be sorted accordingly. It is useful for optional dependencies, like shell or mission in some modules - suggests: if a functionality is not provided by the user, a module can suggest a list of modules that can provide them. It is a convenient way to have "default" modules. As a result the former autoload node is removed and replaced by suggested modules.
45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="imu_disco" dir="imu" task="sensors">
|
|
<doc>
|
|
<description>
|
|
Driver for IMU on the Parrot Disco drone.
|
|
- Accelerometer/Gyroscope: MPU6000 via I2C2
|
|
- Magnetometer: AK8963 via I2C1
|
|
</description>
|
|
<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>
|
|
<dep>
|
|
<depends>i2c,imu_common</depends>
|
|
<provides>imu,mag</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="imu_disco.h"/>
|
|
</header>
|
|
<init fun="imu_disco_init()"/>
|
|
<periodic fun="imu_disco_periodic()"/>
|
|
<event fun="imu_disco_event()"/>
|
|
<makefile target="!sim|nps|fbw">
|
|
<define name="USE_I2C1"/>
|
|
<define name="USE_I2C2"/>
|
|
<file name="mpu60x0.c" dir="peripherals"/>
|
|
<file name="mpu60x0_i2c.c" dir="peripherals"/>
|
|
<file name="ak8963.c" dir="peripherals"/>
|
|
<file name="imu_disco.c"/>
|
|
<test>
|
|
<define name="USE_I2C2"/>
|
|
<define name="USE_I2C1"/>
|
|
<define name="PERIODIC_FREQUENCY" value="512"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|
|
|