mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-08 02:15:53 +08:00
bcaba7c720
modules developpers can provide - a description of the module - a list of the configuration variables and flags (configure and define) - a list of sections to add to the airframe file
20 lines
504 B
XML
20 lines
504 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="tcas" dir="multi">
|
|
<doc>
|
|
<description>Collision avoidance system based on TCAS logic</description>
|
|
</doc>
|
|
<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()"/>
|
|
<makefile>
|
|
<file name="tcas.c"/>
|
|
<define name="TCAS"/>
|
|
</makefile>
|
|
</module>
|
|
|