Files
paparazzi/conf/modules/autopilot_guided.xml
T
Gautier Hattenberger 27e59d9db5
Issues due date / Add labels to issues (push) Has been cancelled
Doxygen / build (push) Has been cancelled
[guided] support full ref update in guided mode (#3502)
New message can set position, speed, acceleration and heading setpoint
for an accurate trajectory tracking.

Also fix the update of ref when h_ref is disabled.
2025-07-21 16:21:44 +02:00

24 lines
682 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="autopilot_guided" task="control">
<doc>
<description>
Guided mode interface for autpilote
only rotorcraft for now
</description>
</doc>
<dep>
<depends>@guidance</depends>
</dep>
<header>
<file name="autopilot_guided.h" dir="."/>
</header>
<datalink message="GUIDED_SETPOINT_NED" fun="autopilot_guided_parse_GUIDED(buf)" cond="AP_MODE_GUIDED"/>
<datalink message="GUIDED_FULL_NED" fun="autopilot_guided_parse_GUIDED_FULL(buf)" cond="AP_MODE_GUIDED"/>
<makefile target="!fbw" firmware="rotorcraft">
<file name="autopilot_guided.c" dir="$(SRC_FIRMWARE)"/>
</makefile>
</module>