mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-02-07 19:02:57 +08:00
Some checks failed
Build all targets / Scan for Board Targets (push) Has been cancelled
Build all targets / Build [${{ matrix.runner }}][${{ matrix.group }}] (push) Has been cancelled
Build all targets / Upload Artifacts (push) Has been cancelled
Checks / build (NO_NINJA_BUILD=1 px4_fmu-v5_default) (push) Has been cancelled
Checks / build (NO_NINJA_BUILD=1 px4_sitl_default) (push) Has been cancelled
Checks / build (check_format) (push) Has been cancelled
Checks / build (check_newlines) (push) Has been cancelled
Checks / build (module_documentation) (push) Has been cancelled
Checks / build (px4_fmu-v2_default stack_check) (push) Has been cancelled
Checks / build (px4_sitl_allyes) (push) Has been cancelled
Checks / build (shellcheck_all) (push) Has been cancelled
Checks / build (tests) (push) Has been cancelled
Checks / build (tests_coverage) (push) Has been cancelled
Checks / build (validate_module_configs) (push) Has been cancelled
Clang Tidy / build (push) Has been cancelled
MacOS build / build (px4_fmu-v5_default) (push) Has been cancelled
MacOS build / build (px4_sitl) (push) Has been cancelled
Ubuntu environment build / Build and Test (ubuntu:22.04) (push) Has been cancelled
Ubuntu environment build / Build and Test (ubuntu:24.04) (push) Has been cancelled
Container build / Set Tags and Variables (push) Has been cancelled
Container build / Build Container (amd64) (push) Has been cancelled
Container build / Build Container (arm64) (push) Has been cancelled
Container build / Deploy To Registry (push) Has been cancelled
EKF Update Change Indicator / unit_tests (push) Has been cancelled
Failsafe Simulator Build / build (failsafe_web) (push) Has been cancelled
FLASH usage analysis / Analyzing px4_fmu-v5x (push) Has been cancelled
FLASH usage analysis / Analyzing px4_fmu-v6x (push) Has been cancelled
FLASH usage analysis / Publish Results (push) Has been cancelled
ITCM check / Checking nxp_tropic-community (push) Has been cancelled
ITCM check / Checking px4_fmu-v5x (push) Has been cancelled
ITCM check / Checking px4_fmu-v6xrt (push) Has been cancelled
MAVROS Mission Tests / build (map[mission:MC_mission_box vehicle:iris]) (push) Has been cancelled
MAVROS Offboard Tests / build (map[test_file:mavros_posix_tests_offboard_posctl.test vehicle:iris]) (push) Has been cancelled
Nuttx Target with extra env config / build (px4_fmu-v5_default) (push) Has been cancelled
Python CI Checks / build (push) Has been cancelled
ROS Integration Tests / build (push) Has been cancelled
ROS Translation Node Tests / Build and test (map[ros_version:humble ubuntu:jammy]) (push) Has been cancelled
ROS Translation Node Tests / Build and test (map[ros_version:jazzy ubuntu:noble]) (push) Has been cancelled
SITL Tests / Testing PX4 tailsitter (push) Has been cancelled
SITL Tests / Testing PX4 iris (push) Has been cancelled
SITL Tests / Testing PX4 standard_vtol (push) Has been cancelled
Handle stale issues and PRs / stale (push) Has been cancelled
Fuzzing / Fuzzing (push) Has been cancelled
133 lines
5.6 KiB
Plaintext
133 lines
5.6 KiB
Plaintext
# Encodes the system state of the vehicle published by commander
|
|
|
|
uint32 MESSAGE_VERSION = 1
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
uint64 armed_time # Arming timestamp (microseconds)
|
|
uint64 takeoff_time # Takeoff timestamp (microseconds)
|
|
|
|
uint8 arming_state
|
|
uint8 ARMING_STATE_DISARMED = 1
|
|
uint8 ARMING_STATE_ARMED = 2
|
|
|
|
uint8 latest_arming_reason
|
|
uint8 latest_disarming_reason
|
|
uint8 ARM_DISARM_REASON_STICK_GESTURE = 1
|
|
uint8 ARM_DISARM_REASON_RC_SWITCH = 2
|
|
uint8 ARM_DISARM_REASON_COMMAND_INTERNAL = 3
|
|
uint8 ARM_DISARM_REASON_COMMAND_EXTERNAL = 4
|
|
uint8 ARM_DISARM_REASON_MISSION_START = 5
|
|
uint8 ARM_DISARM_REASON_LANDING = 6
|
|
uint8 ARM_DISARM_REASON_PREFLIGHT_INACTION = 7
|
|
uint8 ARM_DISARM_REASON_KILL_SWITCH = 8
|
|
uint8 ARM_DISARM_REASON_RC_BUTTON = 13
|
|
uint8 ARM_DISARM_REASON_FAILSAFE = 14
|
|
|
|
uint64 nav_state_timestamp # time when current nav_state activated
|
|
|
|
uint8 nav_state_user_intention # Mode that the user selected (might be different from nav_state in a failsafe situation)
|
|
|
|
uint8 nav_state # Currently active mode
|
|
uint8 NAVIGATION_STATE_MANUAL = 0 # Manual mode
|
|
uint8 NAVIGATION_STATE_ALTCTL = 1 # Altitude control mode
|
|
uint8 NAVIGATION_STATE_POSCTL = 2 # Position control mode
|
|
uint8 NAVIGATION_STATE_AUTO_MISSION = 3 # Auto mission mode
|
|
uint8 NAVIGATION_STATE_AUTO_LOITER = 4 # Auto loiter mode
|
|
uint8 NAVIGATION_STATE_AUTO_RTL = 5 # Auto return to launch mode
|
|
uint8 NAVIGATION_STATE_POSITION_SLOW = 6
|
|
uint8 NAVIGATION_STATE_FREE5 = 7
|
|
uint8 NAVIGATION_STATE_ALTITUDE_CRUISE = 8 # Altitude with Cruise mode
|
|
uint8 NAVIGATION_STATE_FREE3 = 9
|
|
uint8 NAVIGATION_STATE_ACRO = 10 # Acro mode
|
|
uint8 NAVIGATION_STATE_FREE2 = 11
|
|
uint8 NAVIGATION_STATE_DESCEND = 12 # Descend mode (no position control)
|
|
uint8 NAVIGATION_STATE_TERMINATION = 13 # Termination mode
|
|
uint8 NAVIGATION_STATE_OFFBOARD = 14
|
|
uint8 NAVIGATION_STATE_STAB = 15 # Stabilized mode
|
|
uint8 NAVIGATION_STATE_FREE1 = 16
|
|
uint8 NAVIGATION_STATE_AUTO_TAKEOFF = 17 # Takeoff
|
|
uint8 NAVIGATION_STATE_AUTO_LAND = 18 # Land
|
|
uint8 NAVIGATION_STATE_AUTO_FOLLOW_TARGET = 19 # Auto Follow
|
|
uint8 NAVIGATION_STATE_AUTO_PRECLAND = 20 # Precision land with landing target
|
|
uint8 NAVIGATION_STATE_ORBIT = 21 # Orbit in a circle
|
|
uint8 NAVIGATION_STATE_AUTO_VTOL_TAKEOFF = 22 # Takeoff, transition, establish loiter
|
|
uint8 NAVIGATION_STATE_EXTERNAL1 = 23
|
|
uint8 NAVIGATION_STATE_EXTERNAL2 = 24
|
|
uint8 NAVIGATION_STATE_EXTERNAL3 = 25
|
|
uint8 NAVIGATION_STATE_EXTERNAL4 = 26
|
|
uint8 NAVIGATION_STATE_EXTERNAL5 = 27
|
|
uint8 NAVIGATION_STATE_EXTERNAL6 = 28
|
|
uint8 NAVIGATION_STATE_EXTERNAL7 = 29
|
|
uint8 NAVIGATION_STATE_EXTERNAL8 = 30
|
|
uint8 NAVIGATION_STATE_MAX = 31
|
|
|
|
uint8 executor_in_charge # Current mode executor in charge (0=Autopilot)
|
|
|
|
uint32 valid_nav_states_mask # Bitmask for all valid nav_state values
|
|
uint32 can_set_nav_states_mask # Bitmask for all modes that a user can select
|
|
|
|
# Bitmask of detected failures
|
|
uint16 failure_detector_status
|
|
uint16 FAILURE_NONE = 0
|
|
uint16 FAILURE_ROLL = 1 # (1 << 0)
|
|
uint16 FAILURE_PITCH = 2 # (1 << 1)
|
|
uint16 FAILURE_ALT = 4 # (1 << 2)
|
|
uint16 FAILURE_EXT = 8 # (1 << 3)
|
|
uint16 FAILURE_ARM_ESC = 16 # (1 << 4)
|
|
uint16 FAILURE_BATTERY = 32 # (1 << 5)
|
|
uint16 FAILURE_IMBALANCED_PROP = 64 # (1 << 6)
|
|
uint16 FAILURE_MOTOR = 128 # (1 << 7)
|
|
|
|
uint8 hil_state
|
|
uint8 HIL_STATE_OFF = 0
|
|
uint8 HIL_STATE_ON = 1
|
|
|
|
# Current vehicle locomotion method. A vehicle can have different methods (e.g. VTOL transitions from RW to FW method)
|
|
uint8 vehicle_type
|
|
uint8 VEHICLE_TYPE_UNSPECIFIED = 0
|
|
uint8 VEHICLE_TYPE_ROTARY_WING = 1
|
|
uint8 VEHICLE_TYPE_FIXED_WING = 2
|
|
uint8 VEHICLE_TYPE_ROVER = 3
|
|
|
|
uint8 FAILSAFE_DEFER_STATE_DISABLED = 0
|
|
uint8 FAILSAFE_DEFER_STATE_ENABLED = 1
|
|
uint8 FAILSAFE_DEFER_STATE_WOULD_FAILSAFE = 2 # Failsafes deferred, but would trigger a failsafe
|
|
|
|
bool failsafe # true if system is in failsafe state (e.g.:RTL, Hover, Terminate, ...)
|
|
bool failsafe_and_user_took_over # true if system is in failsafe state but the user took over control
|
|
uint8 failsafe_defer_state # one of FAILSAFE_DEFER_STATE_*
|
|
|
|
# Link loss
|
|
bool gcs_connection_lost # datalink to GCS lost
|
|
uint8 gcs_connection_lost_counter # counts unique GCS connection lost events
|
|
bool high_latency_data_link_lost # Set to true if the high latency data link (eg. RockBlock Iridium 9603 telemetry module) is lost
|
|
|
|
# VTOL flags
|
|
bool is_vtol # True if the system is VTOL capable
|
|
bool is_vtol_tailsitter # True if the system performs a 90° pitch down rotation during transition from MC to FW
|
|
bool in_transition_mode # True if VTOL is doing a transition
|
|
bool in_transition_to_fw # True if VTOL is doing a transition from MC to FW
|
|
|
|
# MAVLink identification
|
|
uint8 system_type # system type, contains mavlink MAV_TYPE
|
|
uint8 system_id # system id, contains MAVLink's system ID field
|
|
uint8 component_id # subsystem / component id, contains MAVLink's component ID field
|
|
|
|
bool safety_button_available # Set to true if a safety button is connected
|
|
bool safety_off # Set to true if safety is off
|
|
|
|
bool power_input_valid # set if input power is valid
|
|
bool usb_connected # set to true (never cleared) once telemetry received from usb link
|
|
|
|
bool open_drone_id_system_present
|
|
bool open_drone_id_system_healthy
|
|
|
|
bool parachute_system_present
|
|
bool parachute_system_healthy
|
|
|
|
bool rc_calibration_in_progress
|
|
bool calibration_enabled
|
|
|
|
bool pre_flight_checks_pass # true if all checks necessary to arm pass
|