forked from Archive/PX4-Autopilot
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:
parent
7983e105bf
commit
3685ec5c97
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue