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
21 lines
549 B
XML
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>
|
|
|
|
|