Skip to content

Flight Modes (Rover)

Flight modes (or more accurately "Drive modes" for ground vehicles) provide autopilot support to make it easier to manually drive the vehicle, to execute autonomous missions, or to defer control to an external system.

PX4 ground vehicles only support manual mode, mission mode and offboard mode (other modes may be offered in a ground station, but these all behave just like manual mode).

Manual Mode

Manual mode is the only manual mode for ground vehicles on PX4, and requires a manual controller (RC controller, gamepad, joystick etc.).

In this mode, motors are stopped when RC control sticks are centered. To move the vehicle you move the sticks outside of the center.

As soon as you release the control sticks they will return to the center deadzone. This will turn off the motors and center the wheels. There is no active braking, so the vehicle may continue to move until its momentum dissipates.

Mission Mode

Mission mode is an automatic mode that causes the vehicle to execute a predefined autonomous mission plan that has been uploaded to the flight controller. The mission is typically created and uploaded with a Ground Control Station (GCS) application, such as QGroundControl.

Offboard Mode

Offboard mode causes the vehicle to obey position, velocity, or attitude, setpoints provided over MAVLink. Not all setpoint types make sense for a ground vehicle, or are supported.

INFO

This mode is intended for vehicle control from companion computers and ground stations!

Further Information