Skip to content
Snippets Groups Projects
Commit cec75744 authored by Randy Mackay's avatar Randy Mackay
Browse files

GCS_MAVLink: add MAV_CMD_DO_PARACHUTE

parent 56768a8d
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,17 @@
<param index="7">Empty</param>
</entry>
<entry name="MAV_CMD_DO_PARACHUTE" value="208">
<description>Mission command to trigger a parachute</description>
<param index="1">action (0=disable, 1=enable, 2=release, See PARACHUTE_ACTION enum)</param>
<param index="2">Empty</param>
<param index="3">Empty</param>
<param index="4">Empty</param>
<param index="5">Empty</param>
<param index="6">Empty</param>
<param index="7">Empty</param>
</entry>
</enum>
<!-- fenced mode enums -->
......@@ -146,6 +157,19 @@
<entry name="LAND_IMMEDIATELY" value="2"> <description>Flag set when plane is to immediately descend to break altitude and land without GCS intervention. Flag not set when plane is to loiter at Rally point until commanded to land.</description></entry>
</enum>
<!-- parachute action enum -->
<enum name="PARACHUTE_ACTION">
<entry name="PARACHUTE_DISABLE" value="0">
<description>Disable parachute release</description>
</entry>
<entry name="PARACHUTE_ENABLE" value="1">
<description>Enable parachute release</description>
</entry>
<entry name="PARACHUTE_RELEASE" value="2">
<description>Release parachute</description>
</entry>
</enum>
</enums>
<messages>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment