Browse Source

AP_NavEKF: raise DCM error_rp threshold to 0.05

it was failing on many boards with fixed wing
master
Andrew Tridgell 10 years ago
parent
commit
514c349060
  1. 2
      libraries/AP_NavEKF/AP_NavEKF.cpp

2
libraries/AP_NavEKF/AP_NavEKF.cpp

@ -532,7 +532,7 @@ bool NavEKF::InitialiseFilterDynamic(void)
} }
// If the DCM solution has not converged, then don't initialise // If the DCM solution has not converged, then don't initialise
if (_ahrs->get_error_rp() > 0.02f) { if (_ahrs->get_error_rp() > 0.05f) {
return false; return false;
} }

Loading…
Cancel
Save