Files
paparazzi/conf/modules/ins_arduimu.xml
T
Gautier Hattenberger e4d9e10492 [modules][ocaml] implement module dependency (#2669)
- 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
2021-03-16 17:47:34 +01:00

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>