mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 02:52:42 +08:00
- 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
22 lines
586 B
XML
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>
|
|
|