mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-10 06:59:54 +08:00
07558af7a2
* initial commit airspeed consistency check module * small edit * address comments * use INFO_MSG for airspeed consistency module
29 lines
848 B
XML
29 lines
848 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="airspeed_consistency" dir="checks">
|
|
<doc>
|
|
<description>
|
|
Check consistency of airspeed measurements while flying circles.
|
|
</description>
|
|
</doc>
|
|
<settings>
|
|
<dl_settings>
|
|
<dl_settings NAME="Airspeed Consistency">
|
|
<dl_setting var="asc_reset" min="0" max="1" step="1" values="FALSE|TRUE" type="bool" module="modules/checks/airspeed_consistency" handler="reset"/>
|
|
</dl_settings>
|
|
</dl_settings>
|
|
</settings>
|
|
<dep>
|
|
<depends></depends>
|
|
</dep>
|
|
<header>
|
|
<file name="airspeed_consistency.h"/>
|
|
</header>
|
|
<init fun="airspeed_consistency_init()"/>
|
|
<periodic fun="airspeed_consistency_periodic()" freq="1"/>
|
|
<makefile>
|
|
<file name="airspeed_consistency.c"/>
|
|
<file name="pprz_circfit_float.c" dir="math"/>
|
|
</makefile>
|
|
</module>
|