mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
2.1 KiB
2.1 KiB
pageClass
| pageClass |
|---|
| is-wide-page |
NavigatorStatus (UORB message)
Current status of a Navigator mode. The possible values of nav_state are defined in the VehicleStatus msg.
TOPICS: navigator_status
Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
|---|---|---|---|---|
| timestamp | uint64 |
time since system start (microseconds) | ||
| nav_state | uint8 |
Source mode (values in VehicleStatus) | ||
| failure | uint8 |
Navigator failure enum |
Constants
| 명칭 | 형식 | Value | 설명 |
|---|---|---|---|
| FAILURE_NONE | uint8 |
0 | |
| FAILURE_HAGL | uint8 |
1 | Target altitude exceeds maximum height above ground |
Source Message
:::details Click here to see original file
# Current status of a Navigator mode
# The possible values of nav_state are defined in the VehicleStatus msg.
uint64 timestamp # time since system start (microseconds)
uint8 nav_state # Source mode (values in VehicleStatus)
uint8 failure # Navigator failure enum
uint8 FAILURE_NONE = 0
uint8 FAILURE_HAGL = 1 # Target altitude exceeds maximum height above ground
:::