Browse Source

Copter: add rangefinder pre-arm check

master
Randy Mackay 10 years ago
parent
commit
1ff443d667
  1. 10
      ArduCopter/motors.pde

10
ArduCopter/motors.pde

@ -439,6 +439,16 @@ static bool pre_arm_checks(bool display_failure) @@ -439,6 +439,16 @@ static bool pre_arm_checks(bool display_failure)
}
return false;
}
#if CONFIG_SONAR == ENABLED
// check range finder
if (!sonar.pre_arm_check()) {
if (display_failure) {
gcs_send_text_P(SEVERITY_HIGH,PSTR("PreArm: check range finder"));
}
return false;
}
#endif
}
// if we've gotten this far then pre arm checks have completed

Loading…
Cancel
Save