mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-27 05:20:35 +08:00
Merge pull request #52 from bugobliterator/pr-airspeed-sample-fix
EKF: fix time of sample receive setting
This commit is contained in:
@@ -180,9 +180,8 @@ void EstimatorInterface::setAirspeedData(uint64_t time_usec, float *data)
|
||||
if (time_usec > _time_last_airspeed) {
|
||||
airspeedSample airspeed_sample_new;
|
||||
airspeed_sample_new.airspeed = *data;
|
||||
airspeed_sample_new.time_us -= _params.airspeed_delay_ms * 1000;
|
||||
|
||||
airspeed_sample_new.time_us = time_usec -= FILTER_UPDATE_PERRIOD_MS * 1000 / 2;
|
||||
airspeed_sample_new.time_us = time_usec -_params.airspeed_delay_ms * 1000;
|
||||
airspeed_sample_new.time_us -= FILTER_UPDATE_PERRIOD_MS * 1000 / 2;
|
||||
_time_last_airspeed = time_usec;
|
||||
|
||||
_airspeed_buffer.push(airspeed_sample_new);
|
||||
|
||||
Reference in New Issue
Block a user