disable airspeed fusion for now. Needs more testing and implementation of side slip fusion

This commit is contained in:
Roman Bapst 2016-04-19 11:18:45 +02:00
parent 99fc61c27c
commit 00c8821006
1 changed files with 2 additions and 1 deletions

View File

@ -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();
}
}