mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
AP_Arming: display a warning if arming checks disabled when arming
This commit is contained in:
parent
dfd9ead46f
commit
b74a76c03d
@ -1364,6 +1364,10 @@ bool AP_Arming::arm(AP_Arming::Method method, const bool do_arming_checks)
|
||||
armed = false;
|
||||
}
|
||||
|
||||
if (armed && do_arming_checks && checks_to_perform == 0) {
|
||||
gcs().send_text(MAV_SEVERITY_WARNING, "Warning: Arming Checks Disabled");
|
||||
}
|
||||
|
||||
return armed;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user