Files
paparazzi/conf/modules/stabilization_passthrough.xml
T
Gautier Hattenberger e4d9e10492 [modules][ocaml] implement module dependency (#2669)
- support depends, conflicts and provides nodes, all under a 'dep' node
- autoload are kept for now and are not moved yet
- modules are updated for new dep format
- it is now required that module's name and filename are the same
2021-03-16 17:47:34 +01:00

25 lines
877 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="stabilization_passthrough" dir="stabilization">
<doc>
<description>
Passthrough controller for rotorcraft
</description>
</doc>
<dep>
<depends>stabilization_rotorcraft</depends>
</dep>
<header>
<file name="stabilization_attitude_passthrough.h"/>
</header>
<init fun="stabilization_attitude_init()"/>
<makefile target="ap|nps" firmware="rotorcraft">
<file name="stabilization_attitude_passthrough.c" dir="$(SRC_FIRMWARE)/stabilization"/>
<file name="stabilization_attitude_rc_setpoint.c" dir="$(SRC_FIRMWARE)/stabilization"/>
<define name="STABILIZATION_ATTITUDE_NO_REF"/>
<define name="STABILIZATION_ATTITUDE_TYPE_INT"/>
<define name="STABILIZATION_ATTITUDE_TYPE_H" value="stabilization/stabilization_attitude_passthrough.h" type="string"/>
</makefile>
</module>