Loosen velocity threshold to 20 m/s to only catch the really bad instances and let the system live in peace else

This commit is contained in:
Lorenz Meier 2014-06-12 15:52:15 +02:00
parent 7983e105bf
commit 3685ec5c97
1 changed files with 1 additions and 1 deletions

View File

@ -2140,7 +2140,7 @@ bool AttPosEKF::VelNEDDiverged()
Vector3f delta = current_vel - gps_vel;
float delta_len = delta.length();
return (delta_len > 8.0f);
return (delta_len > 20.0f);
}
bool AttPosEKF::FilterHealthy()