mirror of https://github.com/ArduPilot/ardupilot
AP_Arming: Collapse GPS checks into the same branch
This commit is contained in:
parent
3ab9b75df0
commit
bde1b6e886
|
@ -357,23 +357,8 @@ bool AP_Arming::gps_checks(bool report)
|
|||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if ((checks_to_perform & ARMING_CHECK_ALL) || (checks_to_perform & ARMING_CHECK_GPS_CONFIG)) {
|
||||
uint8_t first_unconfigured = gps.first_unconfigured_gps();
|
||||
if (first_unconfigured != AP_GPS::GPS_ALL_CONFIGURED) {
|
||||
if (report) {
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL,
|
||||
"PreArm: GPS %d failing configuration checks",
|
||||
first_unconfigured + 1);
|
||||
gps.broadcast_first_configuration_failure_reason();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// check GPSs are within 50m of each other and that blending is healthy
|
||||
if ((checks_to_perform & ARMING_CHECK_ALL) || (checks_to_perform & ARMING_CHECK_GPS)) {
|
||||
// check GPSs are within 50m of each other and that blending is healthy
|
||||
float distance_m;
|
||||
if (!gps.all_consistent(distance_m)) {
|
||||
if (report) {
|
||||
|
@ -391,6 +376,19 @@ bool AP_Arming::gps_checks(bool report)
|
|||
}
|
||||
}
|
||||
|
||||
if ((checks_to_perform & ARMING_CHECK_ALL) || (checks_to_perform & ARMING_CHECK_GPS_CONFIG)) {
|
||||
uint8_t first_unconfigured = gps.first_unconfigured_gps();
|
||||
if (first_unconfigured != AP_GPS::GPS_ALL_CONFIGURED) {
|
||||
if (report) {
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL,
|
||||
"PreArm: GPS %d failing configuration checks",
|
||||
first_unconfigured + 1);
|
||||
gps.broadcast_first_configuration_failure_reason();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue