mirror of https://github.com/ArduPilot/ardupilot
Copter: Arming: rc recever: also check for valid override
This commit is contained in:
parent
7d16489e9a
commit
fe539e8bb2
|
@ -92,7 +92,7 @@ bool AP_Arming_Copter::rc_throttle_failsafe_checks(bool display_failure) const
|
|||
const char *rc_item = "Throttle";
|
||||
#endif
|
||||
|
||||
if (!rc().has_had_rc_receiver()) {
|
||||
if (!rc().has_had_rc_receiver() && !rc().has_had_rc_override()) {
|
||||
check_failed(ARMING_CHECK_RC, display_failure, "RC not found");
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue