mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-05 18:51:00 +08:00
- register mission status message for telemetry, so it can be used on extra link with companion computer - add altitude proximity option to check alt on waypoints, not only 2D position - add documentation to XML file
23 lines
631 B
XML
23 lines
631 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="mission_rotorcraft" dir="mission" task="control">
|
|
<doc>
|
|
<description>
|
|
Specific interface for mission control of rotorcraft.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>mission_common</depends>
|
|
<provides>mission</provides>
|
|
</dep>
|
|
<makefile>
|
|
<file name="mission_rotorcraft_nav.c"/>
|
|
<test firmware="rotorcraft">
|
|
<define name="DOWNLINK_TRANSPORT" value="pprz_tp"/>
|
|
<define name="DOWNLINK_DEVICE" value="uart0"/>
|
|
<define name="USE_UART0"/>
|
|
<define name="MISSION_ALT_PROXIMITY" value="2."/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|