PX4-Autopilot/msg/TakeoffStatus.msg
Daniel Agar 9ee8fa21cd
PX4 ROS2 msg conformity and explicit topics
- .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
2022-03-07 10:36:27 -05:00

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