mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
dfd8e93927
* [generator] generate unique ID and names table for modules * [state] add accessors for the state origin * [state] don't access directly to state origin, use getters * [state] filter inputs with module ID * [ahrs] convert AHRS modules to state input filter - selection of ahrs with settings from each module - init functions for each ahrs modules - remove old chimu * update unit test * [ins] decoupled INS implementation To allow multiple INS at the same time: - remove weak functions from ins.c - remove the INS_TYPE_H define - use ABI message to trigger INS reset * [state] protect for c++
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ins_hff_extended" dir="ins" task="estimation">
|
|
<doc>
|
|
<description>
|
|
extended INS with vertical filter using sonar.
|
|
</description>
|
|
<define name="INS_SONAR_MIN_RANGE" value="0.001" description="min sonar range in meters"/>
|
|
<define name="INS_SONAR_MAX_RANGE" value="4.0" description="max sonar range in meters"/>
|
|
<define name="INS_SONAR_UPDATE_ON_AGL" value="FALSE" description="assume flat ground and use sonar for height"/>
|
|
</doc>
|
|
|
|
<settings>
|
|
<dl_settings NAME="Ins Extended">
|
|
<dl_settings NAME="INS">
|
|
<dl_setting MAX="10" MIN="0" STEP="0.1" VAR="vff.accel_noise" shortname="accel_noise" module="modules/ins/vf_extended_float"/>
|
|
<dl_setting MAX="10" MIN="0" STEP="0.1" VAR="vff.r_baro" shortname="r_baro"/>
|
|
<dl_setting MAX="10" MIN="0" STEP="0.1" VAR="vff.r_alt" shortname="r_alt"/>
|
|
<dl_setting MAX="10" MIN="0" STEP="0.1" VAR="vff.r_obs_height" shortname="r_obs_height"/>
|
|
</dl_settings>
|
|
</dl_settings>
|
|
</settings>
|
|
<dep>
|
|
<depends>ins_int_common</depends>
|
|
<provides>ins</provides>
|
|
</dep>
|
|
<makefile target="ap|nps">
|
|
<file name="vf_extended_float.c"/>
|
|
<define name="USE_VFF_EXTENDED"/>
|
|
<file name="hf_float.c"/>
|
|
<define name="USE_HFF"/>
|
|
<test firmware="rotorcraft">
|
|
<define name="AHRS_PROPAGATE_FREQUENCY" value="500"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|