mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-22 03:17:34 +08:00
88d623bedb
* Add vitepress tree * Update existing workflows so they dont trigger on changes in the docs path * Add nojekyll, package.json, LICENCE etc * Add crowdin docs upload/download scripts * Add docs flaw checker workflows * Used docs prefix for docs workflows * Crowdin obvious fixes * ci: docs move to self hosted runner runs on a beefy server for faster builds Signed-off-by: Ramon Roche <mrpollo@gmail.com> * ci: don't run build action for docs or ci changes Signed-off-by: Ramon Roche <mrpollo@gmail.com> * ci: update runners Signed-off-by: Ramon Roche <mrpollo@gmail.com> * Add docs/en * Add docs assets and scripts * Fix up editlinks to point to PX4 sources * Download just the translations that are supported * Add translation sources for zh, uk, ko * Update latest tranlsation and uorb graphs * update vitepress to latest --------- Signed-off-by: Ramon Roche <mrpollo@gmail.com> Co-authored-by: Ramon Roche <mrpollo@gmail.com>
58 lines
3.7 KiB
Markdown
58 lines
3.7 KiB
Markdown
# Mission Mode (VTOL)
|
|
|
|
<img src="../../assets/site/position_fixed.svg" title="Global position fix required (e.g. GPS)" width="30px" />
|
|
|
|
_Mission mode_ causes the vehicle to execute a predefined autonomous [mission](../flying/missions.md) (flight plan) that has been uploaded to the flight controller.
|
|
The mission is typically created and uploaded with a Ground Control Station (GCS) application like [QGroundControl](https://docs.qgroundcontrol.com/master/en/) (QGC).
|
|
|
|
VTOL vehicles follow the behavior and parameters of fixed-wing when in FW mode, and of multicopter when in MC mode.
|
|
For more information see the specific docs for each mode:
|
|
|
|
- [Mission Mode (MC)](../flight_modes_mc/mission.md)
|
|
- [Mission Mode (FW)](../flight_modes_fw/mission.md)
|
|
|
|
The following sections outline mission mode behaviour that is VTOL specificL.
|
|
|
|
## Mission Commands
|
|
|
|
The following VTOL-specific commands are as defined in the MAVLink specification.
|
|
|
|
- [MAV_CMD_NAV_VTOL_TAKEOFF](https://mavlink.io/en/messages/common.html#MAV_CMD_NAV_VTOL_TAKEOFF)
|
|
- `MAV_CMD_NAV_VTOL_TAKEOFF.param2` (transition heading) is ignored.
|
|
Instead the heading to the next waypoint is used for the transition heading. <!-- at LEAST until PX4 v1.13: https://github.com/PX4/PX4-Autopilot/issues/12660 -->
|
|
- [MAV_CMD_NAV_VTOL_LAND](https://mavlink.io/en/messages/common.html#MAV_CMD_NAV_VTOL_LAND)
|
|
- [MAV_CMD_DO_VTOL_TRANSITION](https://mavlink.io/en/messages/common.html#MAV_CMD_DO_VTOL_TRANSITION)
|
|
|
|
Otherwise PX4 generally "accepts" the mission commands for fixed wing or multicopter when in the respective modes.
|
|
|
|
In fixed-wing mode there are the following exceptions:
|
|
|
|
- [MAV_CMD_NAV_LAND](https://mavlink.io/en/messages/common.html#MAV_CMD_NAV_LAND) is transformed into [MAV_CMD_NAV_VTOL_LAND](https://mavlink.io/en/messages/common.html#MAV_CMD_NAV_VTOL_LAND) unless [NAV_FORCE_VT](../advanced_config/parameter_reference.md#NAV_FORCE_VT) is set to `0` (disabled).
|
|
- [MAV_CMD_NAV_TAKEOFF](https://mavlink.io/en/messages/common.html#MAV_CMD_NAV_TAKEOFF) is not supported.
|
|
|
|
## Mission Command Timeouts
|
|
|
|
Some mission commands/items can take time to complete, such as a gripper opening and closing, a winch extending or retracting, or a gimbal moving to point at a region of interest.
|
|
|
|
Where provided PX4 may use sensor feedback from the hardware to determine when the action has completed and then move to the next mission item.
|
|
If not provided, or if the feedback is lost, a mission command timeout can be used to ensure that these kinds of actions will progress to the next mission item rather than blocking progression.
|
|
|
|
The timeout is set using the [MIS_COMMAND_TOUT](../advanced_config/parameter_reference.md#MIS_COMMAND_TOUT) parameter.
|
|
This should be set to be a small amount greater than the time required for the longest long-running action in the mission to complete.
|
|
|
|
## Mission Takeoff
|
|
|
|
Plan a VTOL mission takeoff by adding a `VTOL Takeoff` mission item to the map.
|
|
|
|
During mission execution the vehicle will ascend vertically to the minimum takeoff altitude defined in the [MIS_TAKEOFF_ALT](../advanced_config/parameter_reference.md#MIS_TAKEOFF_ALT) parameter, then transition to fixed-wing mode with the heading defined in the mission item.
|
|
After transitioning the vehicle heads towards the 3D position defined in the mission item.
|
|
|
|
A VTOL mission requires a `VTOL Takeoff` mission item (`MAV_CMD_NAV_VTOL_TAKEOFF`) to takeoff (or a `MAV_CMD_NAV_TAKEOFF` when the vehicle is in MC mode); if however the vehicle is already flying when the mission is started the takeoff item will be treated as a normal waypoint.
|
|
|
|
## See Also
|
|
|
|
- [Mission Mode (MC)](../flight_modes_mc/mission.md)
|
|
- [Mission Mode (FW)](../flight_modes_fw/mission.md)
|
|
- [Missions](../flying/missions.md)
|
|
- [Package Delivery Mission](../flying/package_delivery_mission.md)
|