Files
PX4-Autopilot/docs/ko/msg_docs/FlightPhaseEstimation.md
PX4 Build Bot 94c3765712 New Crowdin translations - ko (#26551)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-03-05 14:01:52 +11:00

2.1 KiB

pageClass
pageClass
is-wide-page

FlightPhaseEstimation (UORB message)

TOPICS: flight_phase_estimation

Fields

명칭 형식 Unit [Frame] Range/Enum 설명
timestamp uint64 time since system start (microseconds)
flight_phase uint8 Estimate of current flight phase

Constants

명칭 형식 Value 설명
FLIGHT_PHASE_UNKNOWN uint8 0 vehicle flight phase is unknown
FLIGHT_PHASE_LEVEL uint8 1 Vehicle is in level flight
FLIGHT_PHASE_DESCEND uint8 2 vehicle is in descend
FLIGHT_PHASE_CLIMB uint8 3 vehicle is climbing

Source Message

Source file (GitHub)

:::details Click here to see original file

uint64 timestamp               # time since system start (microseconds)

uint8 flight_phase 		# Estimate of current flight phase

uint8 FLIGHT_PHASE_UNKNOWN = 0  # vehicle flight phase is unknown
uint8 FLIGHT_PHASE_LEVEL = 1	# Vehicle is in level flight
uint8 FLIGHT_PHASE_DESCEND = 2	# vehicle is in descend
uint8 FLIGHT_PHASE_CLIMB = 3   # vehicle is climbing

:::