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
21 lines
563 B
XML
21 lines
563 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ins_ArduIMU" dir="ins">
|
|
<doc>
|
|
<description>ArduIMU v2</description>
|
|
</doc>
|
|
<header>
|
|
<file name="ins_arduimu.h"/>
|
|
</header>
|
|
<init fun="ArduIMU_init()"/>
|
|
<periodic fun="ArduIMU_periodic()" freq="15" autorun="TRUE"/> <!-- 15 ist soll -->
|
|
<periodic fun="ArduIMU_periodicGPS()" freq="8" autorun="TRUE"/> <!-- 8 ist soll -->
|
|
<makefile target="ap">
|
|
<file name="ins_arduimu.c"/>
|
|
</makefile>
|
|
<makefile target="sim">
|
|
<file_arch name="ins_arduimu.c"/>
|
|
</makefile>
|
|
</module>
|
|
|