Files
paparazzi/conf/modules/ins_hff.xml
T
Gautier Hattenberger dfd8e93927 State interface input filter (#3409)
* [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++
2024-12-03 22:34:27 +01:00

22 lines
530 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="ins_hff" dir="ins" task="estimation">
<doc>
<description>
INS with float vertical and horizontal filters.
</description>
</doc>
<dep>
<depends>ins_int_common</depends>
<provides>ins</provides>
</dep>
<makefile target="ap|nps">
<file name="vf_float.c"/>
<file name="hf_float.c"/>
<define name="USE_HFF"/>
<test firmware="rotorcraft">
<define name="AHRS_PROPAGATE_FREQUENCY" value="500"/>
</test>
</makefile>
</module>