1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

Updating INS Pos/Vel variance includes the vertical velocity

This commit is contained in:
James Cotton 2012-04-15 11:50:11 -05:00
parent b71e9fc9dc
commit 6e215bd029
2 changed files with 2 additions and 2 deletions

View File

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

View File

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