forked from Archive/PX4-Autopilot
disable airspeed fusion for now. Needs more testing and implementation of side slip fusion
This commit is contained in:
parent
99fc61c27c
commit
00c8821006
|
@ -327,7 +327,8 @@ bool Ekf::update()
|
|||
}
|
||||
|
||||
// TODO This is just to get the logic inside but we will only start fusion once we tested this again
|
||||
if (_airspeed_buffer.pop_first_older_than(_imu_sample_delayed.time_us, &_airspeed_sample_delayed)) {
|
||||
//if (_airspeed_buffer.pop_first_older_than(_imu_sample_delayed.time_us, &_airspeed_sample_delayed)) {
|
||||
if (false) {
|
||||
fuseAirspeed();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue