Files
paparazzi/conf/modules/ins_arduimu.xml
Gautier Hattenberger 41451d5422 [sim] moving the old ocaml simulator to NPS (#3167)
- the exact same basic model is now a NPS FDM
- sim target still woks, it is just an alias to NPS with the proper FDM
- the old ocaml files are removed
- AHRS and INS are bypassed, since the accelerations are not well calculated by the model
2023-11-07 10:21:12 +01:00

22 lines
586 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="ins_arduimu" dir="ins" task="estimation">
<doc>
<description>ArduIMU v2</description>
</doc>
<dep>
<depends>@gps</depends>
<provides>imu,ins,ahrs</provides>
</dep>
<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>
</module>