1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-04-11 03:02:20 +02:00

bugfix, use correct variance parameter on z velocity

This commit is contained in:
Corvus Corax 2012-04-18 23:07:02 +02:00 committed by James Cotton
parent f06439ecf5
commit b97b0617aa

View File

@ -183,7 +183,7 @@ void INSSetPosVelVar(float PosVar, float VelVar)
R[2] = PosVar; R[2] = PosVar;
R[3] = VelVar; R[3] = VelVar;
R[4] = VelVar; R[4] = VelVar;
R[5] = PosVar; // Don't change vertical velocity, not measured R[5] = VelVar;
} }
void INSSetGyroBias(float gyro_bias[3]) void INSSetGyroBias(float gyro_bias[3])