Files
paparazzi/conf/modules/vehicle_interface_datalink.xml
T
Gautier Hattenberger bcaba7c720 [modules documentation] Add a doc node to module
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
2012-04-24 09:29:12 +02:00

21 lines
549 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="vi_datalink" dir="vehicle_interface">
<doc>
<description>Vehicule Interface over Datalink</description>
</doc>
<header>
<file name="vi_datalink.h"/>
</header>
<init fun="vi_init()"/>
<periodic fun="vi_periodic()" freq="25"/>
<datalink message="BOOZ2_FMS_COMMAND" fun="VI_PARSE_DATALINK(dl_buffer)"/>
<datalink message="BOOZ_NAV_STICK" fun="VI_NAV_STICK_PARSE_DL(dl_buffer)"/>
<makefile>
<file name="vi.c"/>
<file name="vi_datalink.c"/>
</makefile>
</module>