docs: auto-sync metadata [skip ci]

Co-Authored-By: PX4 BuildBot <bot@px4.io>
This commit is contained in:
PX4BuildBot
2026-02-11 22:43:01 +00:00
parent 01b348c86b
commit 36b5e1e1bb
374 changed files with 12147 additions and 1765 deletions
+41 -2
View File
@@ -1,8 +1,46 @@
---
pageClass: is-wide-page
---
# TecsStatus (UORB message)
**TOPICS:** tecs_status
## Fields
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/TecsStatus.msg)
| Name | Type | Unit [Frame] | Range/Enum | Description |
| ---------------------------- | --------- | ------------ | ---------- | -------------------------------------------------------------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| altitude_sp | `float32` | | | Altitude setpoint AMSL [m] |
| altitude_reference | `float32` | | | Altitude setpoint reference AMSL [m] |
| altitude_time_constant | `float32` | | | Time constant of the altitude tracker [s] |
| height_rate_reference | `float32` | | | Height rate setpoint reference [m/s] |
| height_rate_direct | `float32` | | | Direct height rate setpoint from velocity reference generator [m/s] |
| height_rate_setpoint | `float32` | | | Height rate setpoint [m/s] |
| height_rate | `float32` | | | Height rate [m/s] |
| equivalent_airspeed_sp | `float32` | | | Equivalent airspeed setpoint [m/s] |
| true_airspeed_sp | `float32` | | | True airspeed setpoint [m/s] |
| true_airspeed_filtered | `float32` | | | True airspeed filtered [m/s] |
| true_airspeed_derivative_sp | `float32` | | | True airspeed derivative setpoint [m/s^2] |
| true_airspeed_derivative | `float32` | | | True airspeed derivative [m/s^2] |
| true_airspeed_derivative_raw | `float32` | | | True airspeed derivative raw [m/s^2] |
| total_energy_rate_sp | `float32` | | | Total energy rate setpoint [m^2/s^3] |
| total_energy_rate | `float32` | | | Total energy rate estimate [m^2/s^3] |
| total_energy_balance_rate_sp | `float32` | | | Energy balance rate setpoint [m^2/s^3] |
| total_energy_balance_rate | `float32` | | | Energy balance rate estimate [m^2/s^3] |
| throttle_integ | `float32` | | | Throttle integrator value [-] |
| pitch_integ | `float32` | | | Pitch integrator value [rad] |
| throttle_sp | `float32` | | | Current throttle setpoint [-] |
| pitch_sp_rad | `float32` | | | Current pitch setpoint [rad] |
| throttle_trim | `float32` | | | estimated throttle value [0,1] required to fly level at equivalent_airspeed_sp in the current atmospheric conditions |
| underspeed_ratio | `float32` | | | 0: no underspeed, 1: maximal underspeed. Controller takes measures to avoid stall proportional to ratio if >0. |
| fast_descend_ratio | `float32` | | | value indicating if fast descend mode is enabled with ramp up and ramp down [0-1] |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/TecsStatus.msg)
::: details Click here to see original file
```c
uint64 timestamp # time since system start (microseconds)
@@ -36,5 +74,6 @@ float32 throttle_trim # estimated throttle value [0,1] required to fly level a
float32 underspeed_ratio # 0: no underspeed, 1: maximal underspeed. Controller takes measures to avoid stall proportional to ratio if >0.
float32 fast_descend_ratio # value indicating if fast descend mode is enabled with ramp up and ramp down [0-1]
```
:::