Copter: revert pre-arm check for slow GPS

This commit is contained in:
Randy Mackay 2013-11-22 09:53:21 +09:00
parent 1a0f80ee64
commit 8eb46ced53

View File

@ -424,14 +424,6 @@ static bool pre_arm_gps_checks(bool display_failure)
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
return true;
}