mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-05 18:51:00 +08:00
- support depends, conflicts and provides nodes, all under a 'dep' node - autoload are kept for now and are not moved yet - modules are updated for new dep format - it is now required that module's name and filename are the same
20 lines
401 B
XML
20 lines
401 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="windturbine" dir="meteo">
|
|
<doc>
|
|
<description></description>
|
|
</doc>
|
|
<dep>
|
|
<depends>trig_test</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="windturbine.h"/>
|
|
</header>
|
|
<periodic fun="windturbine_periodic()" freq="10"/>
|
|
<makefile>
|
|
<file name="windturbine.c"/>
|
|
<define name="TURBINE_ID" value="42"/>
|
|
</makefile>
|
|
</module>
|
|
|