AP_NavEKF3: fix wind speed covariance initialisation bug

This commit is contained in:
Paul Riseborough 2021-09-20 21:20:20 +10:00 committed by Andrew Tridgell
parent ea15834401
commit bc5efb6cd2
1 changed files with 3 additions and 5 deletions

View File

@ -88,11 +88,9 @@ void NavEKF3_core::setWindMagStateLearningMode()
}
// set the wind state variances to the measurement uncertainty
for (uint8_t index=22; index<=23; index++) {
zeroCols(P, 22, 23);
zeroRows(P, 22, 23);
P[index][index] = trueAirspeedVariance;
}
P[22][22] = P[23][23] = trueAirspeedVariance;
windStatesAligned = true;