mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-10 23:35:45 +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
423 B
XML
19 lines
423 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="sys_mon" dir="core">
|
|
<doc>
|
|
<description>System monitor</description>
|
|
</doc>
|
|
<header>
|
|
<file name="sys_mon.h"/>
|
|
</header>
|
|
<init fun="init_sysmon()"/>
|
|
<periodic fun="periodic_report_sysmon()" freq="1."/>
|
|
<periodic fun="periodic_sysmon()"/>
|
|
<event fun="event_sysmon()"/>
|
|
<makefile target="ap">
|
|
<file name="sys_mon.c"/>
|
|
</makefile>
|
|
</module>
|
|
|