mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
- .msg files are PascalCase - topics are still either per msg or explicitly listed in TOPICS - compatible structs are still generated (eg struct msg_s), but ROS2 style px4::msg::Msg is also available
15 lines
507 B
Plaintext
15 lines
507 B
Plaintext
# Status of the takeoff state machine currently just availble 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 feasability during takeoff, contains maximum tilt otherwise
|