mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
e4d9e10492
- 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
25 lines
877 B
XML
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>
|
|
|