mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 02:52:42 +08:00
* [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++
23 lines
498 B
XML
23 lines
498 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ahrs_sim" dir="ahrs" task="estimation">
|
|
<doc>
|
|
<description>
|
|
Simple simulation of the AHRS result.
|
|
Only for the simple fixedwing sim.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>ahrs_common</depends>
|
|
<provides>ahrs</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="ahrs.h"/>
|
|
</header>
|
|
<periodic fun="update_ahrs_from_sim()"/>
|
|
<makefile target="sim">
|
|
<file name="ahrs_sim.c"/>
|
|
<test/>
|
|
</makefile>
|
|
</module>
|