mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-07 19:20:34 +08:00
e8c02cdbc4
Add Airflow message Integrate airflow messages initialize parameters at a better place Poll local velocity for wind estimates F Fix
14 lines
898 B
Plaintext
14 lines
898 B
Plaintext
# Airspeed data from sensors
|
|
#
|
|
# This is published by airspeed sensor drivers, CAN airspeed sensors, simulators.
|
|
# It is subscribed by the airspeed selector module, which validates the data from multiple sensors and passes on a single estimation to the EKF, controllers and telemetry providers.
|
|
|
|
uint64 timestamp # [us] Time since system start
|
|
uint64 timestamp_sample # [us] Timestamp of the raw data
|
|
float32 u # [m/s] Body-relative air relative velocity component / X direction
|
|
float32 v # [m/s] Body-relative air relative velocity component / Y direction
|
|
float32 w # [m/s] Body-relative air relative velocity component / Z direction
|
|
float32 windspeed_north # [m/s] Wind component in north / X direction
|
|
float32 windspeed_east # [m/s] Wind component in east / Y direction
|
|
float32 windspeed_down # [m/s] Wind component in down / Z direction
|