mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 01:50:11 +08:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ins_alt_float" dir="ins" task="estimation">
|
|
<doc>
|
|
<description>
|
|
INS with Kalman Filter on altitude.
|
|
For fixedwings.
|
|
</description>
|
|
<define name="USE_INS_NAV_INIT" value="TRUE|FALSE" description="Initialize the origin of the local coordinate system from flight plan. (Default: TRUE)"/>
|
|
<define name="INS_ALT_BARO_ID" value="BARO_BOARD_SENDER_ID" description="The ABI sender id of the baro to use"/>
|
|
<define name="INS_ALT_GPS_ID" value="GPS_MULTI_ID" description="The ABI sender id of the GPS to use"/>
|
|
<define name="INS_ALT_IMU_ID" value="ABI_BROADCAST" description="The ABI sender id of the IMU to use"/>
|
|
<define name="DEBUG_ALT_KALMAN" description="if defined, send the debug ALT_KALMAN telemetry message"/>
|
|
</doc>
|
|
<dep>
|
|
<depends>@imu,@gps</depends>
|
|
<provides>ins</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="ins_alt_float.h"/>
|
|
</header>
|
|
<init fun="ins_alt_float_init()"/>
|
|
<makefile target="ap|nps|sim" firmware="fixedwing">
|
|
<define name="INS_TYPE_H" value="modules/ins/ins_alt_float.h" type="string"/>
|
|
<file name="ins.c"/>
|
|
<file name="ins_alt_float.c"/>
|
|
<test firmware="fixedwing"/>
|
|
</makefile>
|
|
</module>
|