mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 01:50:11 +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
23 lines
484 B
XML
23 lines
484 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="MPPT">
|
|
<doc>
|
|
<description>
|
|
Maximum Power Point Tracker
|
|
Solar Cells control board by Michel
|
|
</description>
|
|
</doc>
|
|
<header>
|
|
<file name="MPPT.h"/>
|
|
</header>
|
|
<init fun="MPPT_init()"/>
|
|
<periodic fun="MPPT_periodic()" freq="8." delay="4" autorun="TRUE"/>
|
|
<makefile target="ap">
|
|
<file name="MPPT.c"/>
|
|
</makefile>
|
|
<makefile target="sim">
|
|
<file name="sim_MPPT.c"/>
|
|
</makefile>
|
|
</module>
|
|
|