mirror of https://github.com/ArduPilot/ardupilot
Quaternion: drop the gyro drift rates down
this should allow us to cope with noise more readily
This commit is contained in:
parent
2d6680f144
commit
de1cfc8e34
|
@ -91,11 +91,11 @@ private:
|
||||||
// true if we are doing centripetal acceleration correction
|
// true if we are doing centripetal acceleration correction
|
||||||
bool _centripetal;
|
bool _centripetal;
|
||||||
|
|
||||||
// maximum gyroscope measurement error in rad/s (set to 5 degrees/second)
|
// maximum gyroscope measurement error in rad/s (set to 2 degrees/second)
|
||||||
static const float gyroMeasError = 5.0 * (M_PI/180.0);
|
static const float gyroMeasError = 2.0 * (M_PI/180.0);
|
||||||
|
|
||||||
// maximum gyroscope drift rate in radians/s/s (set to 0.2 degrees/s/s)
|
// maximum gyroscope drift rate in radians/s/s (set to 0.03 degrees/s/s)
|
||||||
static const float gyroMeasDrift = 0.2 * (PI/180.0);
|
static const float gyroMeasDrift = 0.03 * (PI/180.0);
|
||||||
|
|
||||||
float beta;
|
float beta;
|
||||||
float zeta;
|
float zeta;
|
||||||
|
|
Loading…
Reference in New Issue