Browse Source

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

sbg
Lorenz Meier 11 years ago
parent
commit
3685ec5c97
  1. 2
      src/modules/ekf_att_pos_estimator/estimator_23states.cpp

2
src/modules/ekf_att_pos_estimator/estimator_23states.cpp

@ -2140,7 +2140,7 @@ bool AttPosEKF::VelNEDDiverged() @@ -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…
Cancel
Save