Skip to content
Snippets Groups Projects
Commit 8eb46ced authored by Randy Mackay's avatar Randy Mackay
Browse files

Copter: revert pre-arm check for slow GPS

parent 1a0f80ee
No related branches found
No related tags found
No related merge requests found
...@@ -424,14 +424,6 @@ static bool pre_arm_gps_checks(bool display_failure) ...@@ -424,14 +424,6 @@ static bool pre_arm_gps_checks(bool display_failure)
return false; return false;
} }
// check for missed gps updates (i.e. not arriving at at least 4hz)
if (inertial_nav.error_count() > 0) {
if (display_failure) {
gcs_send_text_P(SEVERITY_HIGH,PSTR("PreArm: Slow GPS"));
}
return false;
}
// if we got here all must be ok // if we got here all must be ok
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment