-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
repurpose wind estimator module into airspeed module and add airspeed…
…_validated topic Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
- Loading branch information
Showing
6 changed files
with
392 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 indicated_airspeed_m_s # indicated airspeed in m/s (IAS) | ||
|
||
float32 equivalent_airspeed_m_s # equivalent airspeed in m/s (accounts for instrumentation errors) (EAS) | ||
|
||
float32 true_airspeed_m_s # true filtered airspeed in m/s (TAS) | ||
|
||
float32 ground_minus_wind # TAS calculated from groundspeed - windspeed | ||
|
||
bool airspeed_sensor_measurement_valid # true if airspeed measurement from (one or multiple) pitot is valid | ||
|
||
bool airspeed_valid # true if airspeed_sensor_measurement_valid or groundspeed-windspeed is valid | ||
|
||
int64 selected_airspeed_index # 0-2: airspeed sensor index, -1: groundspeed-windspeed, -2: airspeed invalid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.