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
24 lines
597 B
XML
24 lines
597 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="tcas" dir="multi">
|
|
<doc>
|
|
<description>TCAS collision avoidance</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>traffic_info</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="tcas.h"/>
|
|
</header>
|
|
<init fun="tcas_init()"/>
|
|
<periodic fun="tcas_periodic_task_1Hz()" freq="1"/>
|
|
<periodic fun="tcas_periodic_task_4Hz()" freq="4"/>
|
|
<datalink message="TCAS_RESOLVE" fun="parseTcasResolve(buf)"/>
|
|
<datalink message="TCAS_RA" fun="parseTcasRA(buf)"/>
|
|
<makefile>
|
|
<file name="tcas.c"/>
|
|
<define name="TCAS"/>
|
|
</makefile>
|
|
</module>
|
|
|