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