mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49: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
19 lines
431 B
XML
19 lines
431 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gsm">
|
|
<doc>
|
|
<description>GSM module</description>
|
|
</doc>
|
|
<header>
|
|
<file name="gsm.h"/>
|
|
</header>
|
|
<init fun="gsm_init()"/>
|
|
<periodic fun="gsm_init_report()" period="60." delay="3599" autorun="TRUE"/>
|
|
<periodic fun="gsm_send_report()" period="60." autorun="FALSE"/>
|
|
<event fun="gsm_event()"/>
|
|
<makefile>
|
|
<file name="gsm.c"/>
|
|
</makefile>
|
|
</module>
|
|
|