mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-03-24 02:24:09 +08:00
2.2 KiB
2.2 KiB
pageClass
| pageClass |
|---|
| is-wide-page |
TakeoffStatus (UORB message)
Status of the takeoff state machine currently just available for multicopters.
TOPICS: takeoff_status
Fields
| Name | Type | Unit [Frame] | Range/Enum | Description |
|---|---|---|---|---|
| timestamp | uint64 |
time since system start (microseconds) | ||
| takeoff_state | uint8 |
|||
| tilt_limit | float32 |
limited tilt feasibility during takeoff, contains maximum tilt otherwise |
Constants
Source Message
::: details Click here to see original file
# Status of the takeoff state machine currently just available for multicopters
uint64 timestamp # time since system start (microseconds)
uint8 TAKEOFF_STATE_UNINITIALIZED = 0
uint8 TAKEOFF_STATE_DISARMED = 1
uint8 TAKEOFF_STATE_SPOOLUP = 2
uint8 TAKEOFF_STATE_READY_FOR_TAKEOFF = 3
uint8 TAKEOFF_STATE_RAMPUP = 4
uint8 TAKEOFF_STATE_FLIGHT = 5
uint8 takeoff_state
float32 tilt_limit # limited tilt feasibility during takeoff, contains maximum tilt otherwise
:::