AP_NavEKF2: Fix one frame delay in processing yaw estimator velocity data

This commit is contained in:
Paul Riseborough 2020-04-25 07:52:45 +10:00 committed by Peter Barker
parent 0ce4dd457d
commit ccaa4d6aa9

View File

@ -565,7 +565,7 @@ void NavEKF2_core::runYawEstimatorCorrection()
if (gpsDataToFuse) { if (gpsDataToFuse) {
Vector2f gpsVelNE = Vector2f(gpsDataDelayed.vel.x, gpsDataDelayed.vel.y); Vector2f gpsVelNE = Vector2f(gpsDataDelayed.vel.x, gpsDataDelayed.vel.y);
float gpsVelAcc = fmaxf(gpsSpdAccuracy, frontend->_gpsHorizVelNoise); float gpsVelAcc = fmaxf(gpsSpdAccuracy, frontend->_gpsHorizVelNoise);
yawEstimator->pushVelData(gpsVelNE, gpsVelAcc); yawEstimator->fuseVelData(gpsVelNE, gpsVelAcc);
} }
// action an external reset request // action an external reset request