mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
- update all msgs to be directly compatible with ROS2 - microdds_client improvements - timesync - reduced code size - add to most default builds if we can afford it - lots of other little changes - purge fastrtps (I tried to save this multiple times, but kept hitting roadblocks)
13 lines
467 B
Plaintext
13 lines
467 B
Plaintext
# VEHICLE_VTOL_STATE, should match 1:1 MAVLinks's MAV_VTOL_STATE
|
|
uint8 VEHICLE_VTOL_STATE_UNDEFINED = 0
|
|
uint8 VEHICLE_VTOL_STATE_TRANSITION_TO_FW = 1
|
|
uint8 VEHICLE_VTOL_STATE_TRANSITION_TO_MC = 2
|
|
uint8 VEHICLE_VTOL_STATE_MC = 3
|
|
uint8 VEHICLE_VTOL_STATE_FW = 4
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
uint8 vehicle_vtol_state # current state of the vtol, see VEHICLE_VTOL_STATE
|
|
|
|
bool vtol_transition_failsafe # vtol in transition failsafe mode
|