mirror of https://github.com/ArduPilot/ardupilot
Copter: add pre-arm check for proximity sensor
This commit is contained in:
parent
1665f4d416
commit
89c660eab5
|
@ -380,6 +380,17 @@ bool Copter::parameter_checks(bool display_failure)
|
|||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if PROXIMITY_ENABLED == ENABLED
|
||||
// check proximity sensor if enabled
|
||||
if (copter.proximity.get_status() == AP_Proximity::Proximity_NoData) {
|
||||
if (display_failure) {
|
||||
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: check proximity sensor");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if FRAME_CONFIG == HELI_FRAME
|
||||
// check helicopter parameters
|
||||
if (!motors.parameter_check(display_failure)) {
|
||||
|
|
Loading…
Reference in New Issue