Mission Commands

This article describes the mission commands that are supported by Copter, Plane and Rover when switched into Auto mode. A better list just for Copter can be found here

Overview

The MAVLink protocol defines a large number of MAV_CMD waypoint command types (sent in a MAVLink_mission_item_message). ArduPilot implements handling for the subset of these commands and command parameters that are most relevant and meaningful for each of the vehicles. Unsupported commands that are sent to a particular autopilot will simply be dropped.

This article lists and describes the commands and command-parameters that are supported on each of the vehicle types. Any parameter that is “grey” is not supported by the autopilot and will be ignored. They are still documented to make it clear which properties are supported by the MAV_CMD protocol are not implemented by the vehicle.

Some commands and command parameters are not implemented because they are not relevant for particular vehicle types (for example “MAV_CMD_NAV_TAKEOFF” command makes sense for Plane and Copter but not Rover and the pitch parameter only makes sense for Plane). There are also some potentially useful command parameters that are not handled because there is a limit to the message size, and a decision has been made to prioritize some parameters over others.

Note

There is additional information about the supported commands on Copter (from a Mission Planner perspective) in the Copter Mission Command List.

Types of commands

There are several different types of commands that can be used within missions:

  • Navigation commands are used to control the movement of the vehicle, including takeoff, moving to and around waypoints, changing altitude, and landing.

  • DO commands are for auxiliary functions and do not affect the vehicle’s position (for example, setting the camera trigger distance, or setting a servo value).

  • Condition commands are used to delay DO commands until some condition is met, for example, the UAV reaches a certain altitude or distance from the waypoint.

During a mission at most one “Navigation” command and one “Do” or “Condition” command can be running at one time. A typical mission might set a waypoint (NAV command), add a CONDITION command that doesn’t complete until a certain distance from the destination (MAV_CMD_CONDITION_DISTANCE), and then add a number of DO commands that are executed sequentially (for example MAV_CMD_DO_SET_CAM_TRIGG_DIST to take pictures at regular intervals) when the condition completes.

Note

CONDITION and DO commands are associated with the preceding NAV command: if the UAV reaches the next waypoint before these commands are executed, the next NAV command is loaded and they will be skipped.

Frames of reference

Many of the commands (in particular the NAV_ commands) include position/location information. The information is provided relative to a particular “frame of reference”, which is specified in the message’s Frames of reference field. Copter and Rover Mission use MAV_CMD_DO_SET_HOME command to set the “home position” in the global coordinate frame (MAV_FRAME_GLOBAL), WGS84 coordinate system, where the altitude is relative to mean sea level. All other commands use the MAV_FRAME_GLOBAL_RELATIVE_ALT frame, which uses the same latitude and longitude, but sets altitude as relative to the home position (home altitude = 0).

Plane commands can additionally use MAV_FRAME_GLOBAL_TERRAIN_ALT frame of reference. This again has the same WGS84 frame of reference for latitude/longitude, but specifies altitude relative to ground height (as defined in a terrain database).

Note

The other frame types are defined in the MAVLink protocol (see MAV_FRAME) are not supported for mission commands.

How accurate is the information?

If a command or parameter is marked as supported then it is likely (but not guaranteed) that it will behave as indicated. If a command or parameter is not listed (or marked as not supported) then it is extremely likely that it is not supported on ArduPilot.

The reason for this is that the information was predominantly inferred by inspecting the command handlers for messages:

  • The switch statement in AP_Mission::mavlink_to_mission_cmd was inspected to determine which commands are handled by all vehicle platforms, and which parameters from the message are stored.

  • The command handler switch for each vehicle type (Plane, Copter, Rover) tells us which commands are likely to be supported in each vehicle and which parameters are passed to the handler.

The above checks give a very accurate picture of what commands and parameters are not supported. They give a fairly accurate picture of what commands/parameters are likely to be supported. However, this indication is not guaranteed to be accurate because a command handler could just throw away all the information (and we have not fully checked all of these).

In addition to the above checks, we have also merged information from the Copter Mission Command List.

How to interpret the command parameters

The parameters for each command are listed in a table. The parameters that are “greyed out” are not supported. The command field column (param name) uses “bold” text to indicate those parameters that are defined in the protocol (normal text is used for “empty” parameters).

This allows users/developers to see both what is supported, and what protocol fields are not supported in ArduPilot.

Using this information with a GCS

Mission Planner (MP) exposes the full subset of commands and parameters supported by ArduPilot, filtered to display just those relevant to the currently connected vehicle. Mapping the MP commands to this documentation is easy, because it simply names commands using a cut-down version of the full command name (e.g. DO_SET_SERVO rather than the full command name: MAV_CMD_DO_SET_SERVO). In addition, this document conveniently lists the column label used by Mission Planner alongside each of the parameters.

Other GCSs (APM Planner 2, Tower etc.) may support some other subset of commands/parameters and use alternative names/labels for them. In most cases, the mapping should be obvious.

Commands supported by Copter

This list of commands was inferred from the command handler in /ArduCopter/mode_auto.cpp.

Conditional commands

Conditional commands control the execution of _DO_ commands. For example, a conditional command can prevent DO commands from executing based on a time delay, until the vehicle is at a certain altitude, or at a specified distance from the next target position.

A conditional command may not be complete before reaching the next waypoint. In this case, any unexecuted _DO_ commands associated with the last waypoint will be skipped.

MAV_CMD_CONDITION_DELAY

Supported by: All vehicles.

After reaching a waypoint, delay the execution of the next conditional “_DO_” command for the specified number of seconds (e.g. MAV_CMD_DO_SET_ROI).

Note

This command does not stop the vehicle. If the vehicle reaches the next waypoint before the delay timer completes, the delayed “_DO_” commands will never trigger.

Command parameters

Command Field Mission Planner Field Description
param1 Time (sec) Delay in seconds (decimal).
param2 Empty
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_ConditionDelay.png

Mission Planner Settings for CONDITION_DELAY command

In the example above, Command #4 (DO_SET_ROI) is delayed so that it starts 5 seconds after the vehicle has passed Waypoint #2.

MAV_CMD_CONDITION_DISTANCE

Supported by: All vehicles.

Delays the start of the next “_DO_” command until the vehicle is within the specified number of meters of the next waypoint.

Note

This command does not stop the vehicle: it only affects DO commands.

Command parameters

Command Field Mission Planner Field Description
param1 Dist (m) Distance from the next waypoint before DO commands are executed (meters).
param2 Empty
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_ConditionDistance.png

Mission PlannerSettings for CONDITION_DISTANCE command

In the example above, Command #4 (DO_SET_ROI) is delayed so that it only starts once the vehicle is within 50m of waypoint #5.

MAV_CMD_CONDITION_YAW

Supported by: Copter (not Plane or Rover).

Point (yaw) the nose of the vehicle towards a specified heading.

The parameters allow you to specify whether the target direction is absolute or relative to the current yaw direction. If the direction is relative you can also (separately) specify whether the value is added or subtracted from the current heading (note that the vehicle will always turn in the direction that most quickly gets it to the new target heading regardless of the param3 value).

Command parameters

Command Field Mission Planner Field Description
param1 Deg If param4=0 (absolute): Target heading in degrees [0-360] (0 is North). If param4=1 (relative): The change in heading (in degrees).
param2 Speed deg/s Speed during yaw change:[deg per second].
param3 Dir 1=CW Used to denote the direction of rotation to achieve the target angle (-1=CCW, 1=CW, 0=the vehicle will always turn in the direction that most quickly gets it to the new target heading, but only if param4=0 (absolute), otherwise 0 = CW).
param4 0=Abs 1=Rel Specify if param1 ("Deg" field) is an absolute direction (0) or a relative to the current yaw direction (1).
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_ConditionYaw.png

Copter: Mission Planner Settings for CONDITION_YAW command

Special Commands

This section is for commands that may be relevant to missions, but which are not mission commands (part of the mission).

MAV_CMD_MISSION_START

Supported by: Copter

This command can be used to start a mission when the Copter is on the ground in AUTO mode. If the vehicle is already in the air then the mission will start as soon as you switch into AUTO mode (so this command is not needed/ignored). This allows a GCS/companion computer to start a mission in AUTO without raising the throttle.

Note

Previously a mission would only start after the pilot engaged the throttle. This command makes it possible to start missions without directly controlling the throttle (though that approach is still available).

This is not a “mission command” (it can’t be used as a type of mission waypoint). It is run from the Action menu (see the screenshot below).

Command parameters

The parameters are all ignored.

Command Field Mission Planner Field Description
param1 The first mission item to run.
param2 The last mission item to run (after this item is run, the mission ends).
param3
param4
param5
param6
param7

Mission Planner screenshots

../_images/MissionPlanner_MissionStartCommand.jpg

Mission Planner: MISSION_START command

MAV_CMD_COMPONENT_ARM_DISARM

Supported by: Copter

Disarm the motors.

The command supports disarming on the ground and in flight.

Note

The motors will disarm automatically after landing.

This is not a “mission command” (it can’t be used as a type of mission waypoint).

Command parameters

Command Field Mission Planner Field Description
param1 1 to arm, 0 to disarm. This only works when the vehicle is on the ground.
param2 A value of 21196 will disarm the vehicle in flight.
param3
param4
param5
param6
param7

DO commands

The “DO” or “Now” commands are executed once to perform some action. All the DO commands associated with a waypoint are executed immediately.

MAV_CMD_DO_CHANGE_SPEED

Supported by: Copter, Plane, Rover.

Sets the desired maximum speed in meters/second (only). Both the speed-type and throttle settings are ignored.

Command parameters

Command Field Mission Planner Field Description
param1 Type Speed type (0,1=Ground Speed, 2=Climb Speed, 3=Descent Speed).
param2 speed in m/s Target speed (m/s).
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_DoChangeSpeed.png

Copter: Mission Planner Settings for DO_CHANGE_SPEED command

MAV_CMD_DO_SET_HOME

Supported by: All vehicles.

Sets the home location either as the current location or at the location specified in the command. For SITL work, altitude input here needs to be with reference to absolute altitude, taking into account SRTM elevation.

Note

  • For Plane and Rover, if a good GPS fix cannot be obtained the location specified in the command is used.

  • For Copter, the command will also try to use the current position if all the location parameters are set to 0. The location information in the command is only used if it is close to the EKF origin.

Command parameters

Command Field Mission Planner Field Description
param1 Current Set home location: 1=Set home as current location. 0=Use location specified in message parameters.
param2 Empty
param3 Empty
param4 Empty
param5 Lat Target home latitude (if param1=0)
param6 Lon Target home longitude (if param1=0)
param7 Alt Target home altitude (if param1=0)

Mission planner screenshots

../_images/MissionList_DoSetHome.png

Mission Planner Settings for DO_SET_HOME command

MAV_CMD_DO_SET_RELAY

Supported by: All vehicles.

Set a Relay pin’s voltage high (on) or low (off).

Command parameters

Command Field Mission Planner Field Description
param1 Relay No Relay number.
param2 off(0)/on(1) Set relay state: 1: Set relay high/on (3.3V on Pixhawk, 5V on APM). 0: Set relay low/off (0v) any other value toggles the relay
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionPlanner_DO_SET_RELAY.png

MissionPlanner Settings for DO_SET_RELAY command

MAV_CMD_DO_REPEAT_RELAY

Supported by: All vehicles.

Toggle the Relay pin’s voltage/state a specified number of times with a given period. Toggling the Relay will turn an off relay on and vice versa

Command parameters

Command Field Mission Planner Field Description
param1 Relay No Relay number.
param2 Repeat # Cycle count - the number of times the relay should be toggled
param3 Delay(s) Cycle time (seconds, decimal) - time between each toggle.
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_DoRepeatRelay.png

Mission Planner Settings for DO_RELAY_REPEAT command

In the example above, assuming the relay was off to begin with, it would be set high and then after 3 seconds, it would be toggled low again.

MAV_CMD_DO_SET_SERVO

Supported by: All vehicles.

Set a given servo pin output to a specific PWM value.

Command parameters

Command Field Mission Planner Field Description
param1 Ser No Servo number - target servo output pin/channel number.
param2 PWM PWM value to output, in microseconds (typically 1000 to 2000).
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_DoSetServo.png

Mission Planner Settingsfor DO_SET_SERVO command

In the example above, the servo attached to output channel 8 would be moved to PWM 1700 (servos generally accept PWM values between 1000 and 2000).

Note

as of firmware versions 4.0 and later, this command can be used on any output configured by its SERVOx_FUNCTION command as 0,1, or 51-66 (disabled or RC pass-throughs)

MAV_CMD_DO_REPEAT_SERVO

Supported by: All vehicles.

Cycle a servo PWM output pin between its mid-position value and a specified PWM value, for a given number of cycles and with a set period.

The mid-position value is specified in the RCn_TRIM parameter for the channel (RC8_TRIM in the screenshot below). The default value is 1500..

Command parameters

Command Field Mission Planner Field Description
param1 Ser No Servo number - target servo output pin/channel.
param2 PWM PWM value to output, in microseconds (typically 1000 to 2000).
param3 Repeat # Cycle count - number of times to move the servo to the specified PWM value
param4 Delay (s) Cycle time (seconds) - the delay in seconds between each servo movement.
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_DoRepeatServo.png

Mission Planner Settingsfor DO_REPEAT_SERVO command

In the example above, the servo attached to output channel 8 would be moved to PWM 1700, then after 4 second, back to mid, after another 4 seconds it would be moved to 1700 again, then finally after 4 more seconds it would be moved back to mid.

MAV_CMD_DO_SET_ROI

Supported by: Copter, Plane, Rover.

Points the camera gimbal at the “region of interest”, and also rotates the nose of the vehicle if the mount type does not support a yaw feature.

After setting the ROI, the camera/vehicle will continue to follow it until the end of the mission, unless it is changed or cleared by setting another ROI. Clearing the ROI is achieved by setting a later DO_SET_ROI command with all zero for param5-param7 (Lat, Lon and Alt).

Command parameters

Command Field Mission Planner Field Description
param1 Region of interest mode. (see MAV_ROI enum) // 0 = no roi, 1 = next waypoint, 2 = waypoint number, 3 = fixed location, 4 = given target (not supported)
param2 MISSION index/ target ID. (see MAV_ROI enum)
param3 ROI index (allows a vehicle to manage multiple ROI's)
param4 Empty
param5 Lat Latitude (x) of the fixed ROI
param6 Long Longitude (y) of the fixed ROI
param7 Alt Altitude of the fixed ROI

Mission planner screenshots/video

../_images/MissionList_DoSetRoi.jpg

Copter: Mission Planner Settings for DO_SET_ROI command

In the example above the nose and camera would be pointed at the red marker.

MAV_CMD_DO_DIGICAM_CONFIGURE

Supported by: All vehicles.

Configure an on-board camera controller system.

The parameters are forwarded to an on-board camera controller system (like the 3DR Camera Control Board), if one is present.

Command parameters

Command Field Mission Planner Field Description
param1 Mode Set camera mode: 1: ProgramAuto 2: Aperture Priority 3: Shutter Priority 4: Manual 5: IntelligentAuto 6: SuperiorAuto
param2 Shutter Speed Shutter speed (seconds divisor). So if the speed is 1/60 seconds, the value entered would be 60. Slowest shutter trigger supported is 1 second.
param3 Aperture Aperture: F stop number
param4 ISO ISO number e.g. 80, 100, 200, etc.
param5 ExposureMode Exposure type enumerator
param6 CommandID Command Identity
param7 Engine Cut-Off Main engine cut-off time before camera trigger in seconds/10 (0 means no cut-off).

MAV_CMD_DO_DIGICAM_CONTROL

Supported by: All vehicles.

Trigger the camera shutter once. This command takes no additional arguments.

Command parameters

In general, if a command field is set to 0 it is ignored.

Command Field Mission Planner Field Description
param1 On/Off Session control (on/off or show/hide lens): 0: Turn off the camera / hide the lens 1: Turn on the camera /Show the lens
param2 Zoom Position Zoom's absolute position. 2x, 3x, 10x, etc.
param3 Zoom Step Zooming step value to offset zoom from the current position
param4 Focus Lock Focus Locking, Unlocking or Re-locking: 0: Ignore 1: Unlock 2: Lock
param5 Shutter Cmd Shooting Command. Any non-zero value triggers the camera.
param6 CommandID Command Identity
param7 Empty

Mission planner screenshots

../_images/MissionList_DoDigicamControl.png

Mission PlannerSettings for DO_DIGICAM_CONTROL command.

MAV_CMD_DO_MOUNT_CONTROL

Supported by: All vehicles.

Mission command to control a camera or antenna mount.

This command allows you to specify a roll, pitch and yaw angle which will be sent to the camera gimbal. This can be used to point the camera in specific directions at various times in the mission.

Command parameters

Command Field Mission Planner Field Description
param1 Pitch, in degrees.
param2 Roll, in degrees.
param3 Yaw, in degrees.
param4 reserved
param5 reserved
param6 reserved
param7 `MAV_MOUNT_MODE `__ enum value.

Mission planner screenshots

../_images/MissionList_DoMountControl.png

Mission Planner Settings for DO_MOUNT_CONTROL command

MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW

Supported by: All vehicles.

Mission command to move the gimbal to the desired pitch and yaw angles (in degrees).

This command allows you to specify a pitch and yaw angle which will be sent to the camera gimbal. This can be used to point the camera in specific directions at various times in the mission. Positive pitch angles are up, Negative are down. Positive yaw angles are clockwise, negative are counter clockwise.

Command parameters

Command Field Mission Planner Field Description
param1 Pitch, in degrees.
param2 Yaw, in degrees.
param3 PitchRate, in deg/s.
param4 YawRate, in deg/s
param5 Flags: 0=boddyframe, 16=earthframe
param6 reserved
param7 Gimbal instance ID

Mission planner screenshots

../_images/mission-list-do-gimbal-manager-pitchyaw.png

Mission PlannerSettings for DO_GIMBAL_MANAGE_PITCHYAW command

MAV_CMD_DO_SET_CAM_TRIGG_DIST

Supported by: All vehicles.

Trigger the camera shutter at regular distance intervals. This command is useful in camera survey missions. To trigger the camera once, immediately after passing the DO command, set param3 to 1. Trigger immediately Parameter is available from ArduPilot 4.1 onwards.

Note

Providing a distance of zero will stop the camera shutter from being triggered.

Command parameters

Command Field Mission Planner Field Description
param1 Dist (m) Camera trigger distance interval (meters). Zero to turn off distance triggering.
param2 Empty
param3 ? Trigger once instantly. One is on, zero is off.
param4 Empty
param5 Empty
param6 Empty
param7 Empty

Mission planner screenshots

../_images/MissionList_DoSetCamTriggDist.png

Mission PlannerSettings for DO_SET_CAM_TRIGG_DIST command

The above configuration will cause the camera shutter to trigger after every 5m that the vehicle travels.

MAV_CMD_DO_FENCE_ENABLE

Supported by: All vehicles.

Mission commands to enable the Plane GeoFence, Copter/Rover Cylindrical Fence and/or Inclusion and Exclusion Fences.

Command parameters

Command Field Mission Planner Field Description
param1 Set GeoFence enable state (0=disable, 1=enable, 2= disable only floor (Plane only)).
param2 Empty
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_AUX_FUNCTION

Supported by: All vehicles.

Mission command to control an Auxiliary Function in the same manner as an RC channel switch.

Command parameters

Command Field Mission Planner Field Description
param1 Aux Function Auxiliary Function code,same as RCx_OPTIONS
param2 Switch Position 0:Low, 1:Mid, 2:High
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_PARACHUTE

Supported by: Copter (not Plane or Rover).

Mission command to trigger a parachute (if enabled).

Command parameters

Command Field Mission Planner Field Description
param1 Enable/Release Parachute action (0=disable, 1=enable, 2=release).
param2 Empty
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_GRIPPER

Supported by: Copter (not Plane or Rover).

Mission command to operate EPM gripper.

Note

The instructions for integrating Copter with gripper are out of date and use DO_SET_SERVO to activate the gripper (April 2015).

Command parameters

Command Field Mission Planner Field Description
param1 Gripper No Gripper number (from 1 to maximum number of grippers on the vehicle).
param2 drop(0)/grab(1) Gripper action: 0:Release 1:Grab
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_GUIDED_LIMITS

Supported by: Copter (not Plane or Rover).

This command sets the time, altitude, and distance limits for external control (GUIDED mode). When these limits are exceeded, control will return from GUIDED mode to the mission. Setting any of these parameters to zero will remove the associated limit.

Command parameters

Command Field Mission Planner Field Description
param1 timeout S Maximum time (in seconds) that the external controller is allowed to control vehicle. Use 0 to remove time limits (unlimited time allowed).
param2 min alt Minimum allowed absolute altitude (in meters, AMSL), below which the command will be aborted and the mission will continue. Use 0 to indicate that there is no minimum altitude limit.
param3 max alt Maximum allowed absolute altitude (in meters, AMSL), above which the command will be aborted and the mission will continue. Use 0 to indicate that there is no maximum altitude limit.
param4 max dist Horizontal move limit (in meters, AMSL). If the vehicle moves more than this distance from its location at the moment the command was executed, the the command will be aborted and the mission will continue. Use 0 to indicate that there is no horizontal limit.
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_SET_RESUME_REPEAT_DIST

Supported by: All vehicles.

Set the distance that the mission will be rewound when resuming after an interrupt (switching modes). A full explanation of this feature can be found on the Mission Rewind on Resume Page. After setting a rewind distance in a mission, setting the distance to zero will switch off the rewind feature from that point on the mission.

Command parameters

Command Field Mission Planner Field Description
param1 ? Rewind distance in meters
param2 Empty
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_STORAGE_FORMAT

Supported by: All vehicles.

Format SD Card. Useful for vehicles where SD card is inaccessible. Param1 and Param2 must be set to 1.

Command parameters

Command Field Mission Planner Field Description
param1 ? Must be 1
param2 ? Must be 1
param3 Empty
param4 Empty
param5 Empty
param6 Empty
param7 Empty

MAV_CMD_DO_WINCH

Supported by: Copter.

Control Winch operation.

Command parameters

Command Field Mission Planner Field Description
param1 Winch no Not currently used
param2 action 0 to relax the winch, 1 for Length control, 2 for Rate control
param3 length should be filled in with the meters of the line to release. Positive numbers release the line, negative retract the line. Note "action" should be "1"
param4 rate should be filled in with the speed (in m/s) to release the line. Positive numbers release the line, negative retract the line. Note "action" should be "2".
param5 Empty
param6 Empty
param7 Empty