mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
e4d9e10492
- 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
28 lines
674 B
XML
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>
|