Files
paparazzi/conf/modules/imu_aspirin_v2.1.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

19 lines
472 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_aspirin_v2.1" dir="imu" task="sensors">
<doc>
<description>
Aspirin v2.1 IMU.
- Accelerometer/Gyrocope: MPU6000 via SPI
- Magnetometer: HMC58xx via I2C
For configuration see the imu_aspirin_v2_common module
</description>
</doc>
<dep>
<depends>imu_aspirin_v2_common</depends>
<provides>imu</provides>
</dep>
<makefile target="!sim|nps|fbw">
</makefile>
</module>