Skip to content

Return Mode (VTOL)

The Return flight mode is used to fly a vehicle to safety on an unobstructed path to a safe destination, where it may either wait (hover or circle) or land.

VTOL vehicles use the Mission Landing/Rally Point return type by default. In this return type a vehicle ascends to a minimum safe altitude above obstructions (if needed), and then flies directly to a rally point or the start of a mission landing point (whichever is nearest), or the home position if neither rally points or mission landing pattern is defined. If the destination is a mission landing pattern, the vehicle will then follow the pattern to land. If the destination is a rally point or the home location, the vehicle will fly back to the home position and land.

The vehicle will return using the flying mode (MC or FW) it was using at the point when return mode was triggered. Generally it will follow the same return mode behaviour of the corresponding vehicle type, but will always transition to MC mode (if needed) before landing.

VTOL supports the other PX4 return types, including home/rally point return, mission path and closest safe destination. The default type is recommended.

INFO

  • Mode is automatic - no user intervention is required to control the vehicle.
  • Mode requires a global 3d position estimate (from GPS or inferred from a local position).
    • Flying vehicles can't switch to this mode without global position.
    • Flying vehicles will failsafe if they lose the position estimate.
  • Mode requires home position is set.
  • Mode prevents arming (vehicle must be armed when switching to this mode).
  • RC control switches can be used to change flight modes on any vehicle.
  • RC stick movement is ignored.

Technical Summary

VTOL vehicles use the Mission Landing/Rally Point return type by default, and return using the flying mode (MC or FW) it was using at the point when return mode was triggered.

Fixed-wing Mode (FW) Return

If returning as a fixed-wing, the vehicle:

  • Ascends to a safe minimum return altitude defined by RTL_RETURN_ALT (safely above any expected obstacles). The vehicle maintains its initial altitude if that is higher than the minimum return altitude.

  • Flies via direct constant-altitude path to the destination, which will be the closest of the start of a mission landing pattern and any rally point, or the home location if no mission landing pattern or rally points are defined.

  • If the destination is a mission landing pattern it will follow the pattern to land.

    A mission landing pattern for a VTOL vehicle consists of a MAV_CMD_DO_LAND_START, one or more position waypoints, and a MAV_CMD_NAV_VTOL_LAND.

  • If the destination is a rally point or home it will:

    • Loiter/spiral down to RTL_DESCEND_ALT.

    • Circle for a short time, as defined by RTL_LAND_DELAY.

    • Yaw towards the destination (centre of loiter).

    • Transition to MC mode and land.

      Note that NAV_FORCE_VT is ignored: the vehicle will always land as a multicopter for these destinations.

Multicopter Mode (MC) Return

If returning as a multicopter:

Parameters

The RTL parameters are listed in Parameter Reference > Return Mode. If using a mission landing, only the RTL_RETURN_ALT and RTL_DESCEND_ALT are relevant. The others are relevant if the destination is a rally point or the home location.

ParameterDescription
RTL_TYPEReturn type.
RTL_RETURN_ALTReturn altitude in meters (default: 60m)If already above this value the vehicle will return at its current altitude.
RTL_CONE_ANGHalf-angle of the cone that defines the vehicle RTL return altitude. Values (in degrees): 0, 25, 45, 65, 80, 90. Note that 0 is "no cone" (always return at RTL_RETURN_ALT or higher), while 90 indicates that the vehicle must return at the current altitude or RTL_DESCEND_ALT (whichever is higher).
RTL_DESCEND_ALTMinimum return altitude and altitude at which the vehicle will slow or stop its initial descent from a higher return altitude (default: 30m)
RTL_LAND_DELAYTime to hover at RTL_DESCEND_ALT before landing (default: 0.5s) -by default this period is short so that the vehicle will simply slow and then land immediately. If set to -1 the system will loiter at RTL_DESCEND_ALT rather than landing. The delay is provided to allow you to configure time for landing gear to be deployed (triggered automatically).
RTL_LOITER_RAD[Fixed-wing Only] The radius of the loiter circle (at RTL_LAND_DELAY.
MIS_TKO_LAND_REQSpecify whether a mission landing or takeoff pattern is required. Generally fixed-wing vehicles set this to require a landing pattern but VTOL do not.

See Also