AP_NavEKF : Fix bug in logging of airspeed innovation consistency ratio

This commit is contained in:
priseborough 2014-04-05 17:06:22 +11:00 committed by Andrew Tridgell
parent 95c83255d7
commit 0c2489b07b
1 changed files with 1 additions and 1 deletions

View File

@ -3168,7 +3168,7 @@ void NavEKF::getVariances(float &velVar, float &posVar, float &hgtVar, Vector3f
magVar.x = sqrtf(magTestRatio.x);
magVar.y = sqrtf(magTestRatio.y);
magVar.z = sqrtf(magTestRatio.z);
tasVar = sqrtf(hgtTestRatio);
tasVar = sqrtf(tasTestRatio);
offset.x = posnOffsetNorth;
offset.y = posnOffsetEast;
}