mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-24 08:44:08 -04:00
AP_NavEKF : Fix bug in logging of airspeed innovation consistency ratio
This commit is contained in:
parent
95c83255d7
commit
0c2489b07b
@ -3168,7 +3168,7 @@ void NavEKF::getVariances(float &velVar, float &posVar, float &hgtVar, Vector3f
|
|||||||
magVar.x = sqrtf(magTestRatio.x);
|
magVar.x = sqrtf(magTestRatio.x);
|
||||||
magVar.y = sqrtf(magTestRatio.y);
|
magVar.y = sqrtf(magTestRatio.y);
|
||||||
magVar.z = sqrtf(magTestRatio.z);
|
magVar.z = sqrtf(magTestRatio.z);
|
||||||
tasVar = sqrtf(hgtTestRatio);
|
tasVar = sqrtf(tasTestRatio);
|
||||||
offset.x = posnOffsetNorth;
|
offset.x = posnOffsetNorth;
|
||||||
offset.y = posnOffsetEast;
|
offset.y = posnOffsetEast;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user