Files
paparazzi/conf/modules/stabilization_rotorcraft.xml
T
matejkarasek cd659a78da Command filter for vibrating airframes (#2226)
* Filtering commands + example airframe

Command filter + example airframe

* more generic implementation

* airframe move to the new tudelft location, gain tuning

* revert pprzlink

* revert opencv

* revert libopencm

* style fixed

* fix indenting & modules section moved

* added function declaration
2018-02-27 11:03:01 +01:00

30 lines
1.4 KiB
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="stabilization_rotorcraft" dir="stabilization">
<doc>
<description>
Base stabilization code for rotorcraft
Also provide the direct mode 'stabilization_none'
As a durty hack, it also provides navigation and guidance: this should be done in the airframe at some point
</description>
<section name="STABILIZATION_FILTER_CMD" prefix="STABILIZATION_FILTER_CMD_">
<define name="ROLL_PITCH" value="0" description="roll and pitch command filter toggle" unit="bool"/>
<define name="YAW" value="0" description="yaw command filter toggle" unit="bool"/>
<define name="ROLL_CUTOFF" value="20.0" description="roll command filter cut-off" unit="Hz"/>
<define name="PITCH_CUTOFF" value="20.0" description="pitch command filter cut-off" unit="Hz"/>
<define name="YAW_CUTOFF" value="20.0" description="yaw command filter cut-off" unit="Hz"/>
</section>
</doc>
<autoload name="nav_basic_rotorcraft"/>
<header>
<file name="stabilization.h" dir="firmwares/rotorcraft"/>
<file name="stabilization_none.h"/>
</header>
<init fun="stabilization_init()"/>
<init fun="stabilization_none_init()"/>
<makefile target="ap|nps|hitl" firmware="rotorcraft">
<file name="stabilization.c" dir="$(SRC_FIRMWARE)"/>
<file name="stabilization_none.c" dir="$(SRC_FIRMWARE)/stabilization"/>
</makefile>
</module>