mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 10:19:11 +08:00
4b248e4e93
* [ctrl] Add simple INDI scheduling module * [conf] Cleanup Nederdrones - Fix magnetometer orientation - Remove unused defines - Fix ailerons orientation Co-authored-by: Ewoud Smeur <ewoud_smeur@msn.com>
30 lines
959 B
XML
30 lines
959 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="scheduling_indi_simple" dir="ctrl">
|
|
<doc>
|
|
<description>
|
|
Interpolation of control effectivenss matrix.
|
|
This is necessary if the vehicle has different operating points,
|
|
with significantly different control effectivenss.
|
|
|
|
If instead using online adaptation is an option, be sure to
|
|
not use this module at the same time!
|
|
</description>
|
|
</doc>
|
|
<settings>
|
|
<dl_settings>
|
|
<dl_settings NAME="scheduling">
|
|
<dl_setting var="use_scheduling" min="0" step="1" max="1" shortname="enable" persistent="true" module="ctrl/scheduling_indi_simple"/>
|
|
</dl_settings>
|
|
</dl_settings>
|
|
</settings>
|
|
<header>
|
|
<file name="scheduling_indi_simple.h"/>
|
|
</header>
|
|
<init fun="ctrl_eff_scheduling_init()"/>
|
|
<periodic fun="ctrl_eff_scheduling_periodic()" freq="20"/>
|
|
<makefile>
|
|
<file name="scheduling_indi_simple.c"/>
|
|
</makefile>
|
|
</module>
|