diff --git a/src/modules/ekf_att_pos_estimator/estimator_22states.cpp b/src/modules/ekf_att_pos_estimator/estimator_22states.cpp index 0e7b459b72..b794b9f90d 100644 --- a/src/modules/ekf_att_pos_estimator/estimator_22states.cpp +++ b/src/modules/ekf_att_pos_estimator/estimator_22states.cpp @@ -2825,7 +2825,7 @@ bool AttPosEKF::VelNEDDiverged() Vector3f delta = current_vel - gps_vel; float delta_len = delta.length(); - bool excessive = (delta_len > 20.0f); + bool excessive = (delta_len > 30.0f); current_ekf_state.error |= excessive; current_ekf_state.velOffsetExcessive = excessive;