Files
paparazzi/conf/modules/ahrs_infrared.xml
T
Gautier Hattenberger e4d9e10492 [modules][ocaml] implement module dependency (#2669)
- support depends, conflicts and provides nodes, all under a 'dep' node
- autoload are kept for now and are not moved yet
- modules are updated for new dep format
- it is now required that module's name and filename are the same
2021-03-16 17:47:34 +01:00

28 lines
674 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="ahrs_infrared" dir="ahrs">
<doc>
<description>
AHRS infrared.
Attitude estimation using infrared sensors detecting the horizon.
For fixedwings only:
- GPS course is used as heading.
- ADC channels can be used for gyros.
</description>
</doc>
<dep>
<depends>infrared_adc</depends>
</dep>
<header>
<file name="ahrs_infrared.h"/>
</header>
<init fun="ahrs_infrared_init()"/>
<periodic fun="ahrs_infrared_periodic()" freq="60"/>
<makefile>
<file name="ahrs_infrared.c"/>
<test>
<define name="IR_HORIZ_SENSOR_ALIGNED"/>
</test>
</makefile>
</module>