mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-07-27 00:48:23 +08:00
53 lines
6.5 KiB
Markdown
53 lines
6.5 KiB
Markdown
---
|
|
pageClass: is-wide-page
|
|
---
|
|
|
|
# FollowTargetEstimator (UORB message)
|
|
|
|
**TOPICS:** follow_target_estimator
|
|
|
|
## Fields
|
|
|
|
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
|
|
| -------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------------------------------------------------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
| <a id="fld_timestamp"></a>timestamp | `uint64` | | | time since system start (microseconds) |
|
|
| <a id="fld_last_filter_reset_timestamp"></a>last_filter_reset_timestamp | `uint64` | | | time of last filter reset (microseconds) |
|
|
| <a id="fld_valid"></a>valid | `bool` | | | True if estimator states are okay to be used |
|
|
| <a id="fld_stale"></a>stale | `bool` | | | True if estimator stopped receiving follow_target messages for some time. The estimate can still be valid, though it might be inaccurate. |
|
|
| <a id="fld_lat_est"></a>lat_est | `float64` | | | Estimated target latitude |
|
|
| <a id="fld_lon_est"></a>lon_est | `float64` | | | Estimated target longitude |
|
|
| <a id="fld_alt_est"></a>alt_est | `float32` | | | Estimated target altitude |
|
|
| <a id="fld_pos_est"></a>pos_est | `float32[3]` | | | Estimated target NED position (m) |
|
|
| <a id="fld_vel_est"></a>vel_est | `float32[3]` | | | Estimated target NED velocity (m/s) |
|
|
| <a id="fld_acc_est"></a>acc_est | `float32[3]` | | | Estimated target NED acceleration (m^2/s) |
|
|
| <a id="fld_prediction_count"></a>prediction_count | `uint64` | | | |
|
|
| <a id="fld_fusion_count"></a>fusion_count | `uint64` | | | |
|
|
|
|
## Source Message
|
|
|
|
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/FollowTargetEstimator.msg)
|
|
|
|
:::details
|
|
Click here to see original file
|
|
|
|
```c
|
|
uint64 timestamp # time since system start (microseconds)
|
|
uint64 last_filter_reset_timestamp # time of last filter reset (microseconds)
|
|
|
|
bool valid # True if estimator states are okay to be used
|
|
bool stale # True if estimator stopped receiving follow_target messages for some time. The estimate can still be valid, though it might be inaccurate.
|
|
|
|
float64 lat_est # Estimated target latitude
|
|
float64 lon_est # Estimated target longitude
|
|
float32 alt_est # Estimated target altitude
|
|
|
|
float32[3] pos_est # Estimated target NED position (m)
|
|
float32[3] vel_est # Estimated target NED velocity (m/s)
|
|
float32[3] acc_est # Estimated target NED acceleration (m^2/s)
|
|
|
|
uint64 prediction_count
|
|
uint64 fusion_count
|
|
```
|
|
|
|
:::
|