Files
paparazzi/conf/modules/imu_aspirin_i2c_v1.0.xml
T
Gautier Hattenberger 62646d68de Modules recommends and suggests (#3005)
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.
2023-03-07 17:14:15 +01:00

30 lines
987 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_aspirin_i2c_v1.0" dir="imu" task="sensors">
<doc>
<description>
Aspirin v1.0 IMU using I2C only.
- Accelerometer: ADXL345 via I2C
- Gyroscope: ITG3200 via I2C
- Magnetometer: HMC58xx via I2C
</description>
<configure name="ASPIRIN_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>
<dep>
<depends>imu_aspirin_i2c_common</depends>
<provides>imu</provides>
</dep>
<makefile target="!sim|nps|fbw">
<define name="IMU_ASPIRIN_VERSION_1_0"/>
</makefile>
</module>