Browse Source

Copter: add GUIDED_NOGPS to failsafe checks

master
Peter Barker 6 years ago committed by Randy Mackay
parent
commit
eb9e65fd28
  1. 2
      ArduCopter/events.cpp

2
ArduCopter/events.cpp

@ -98,7 +98,7 @@ void Copter::failsafe_gcs_check()
return; return;
} else if (RC_Channels::has_active_overrides()) { } else if (RC_Channels::has_active_overrides()) {
// GCS is currently telling us what to do! // GCS is currently telling us what to do!
} else if (control_mode == GUIDED) { } else if (control_mode == GUIDED || control_mode == GUIDED_NOGPS) {
// GCS is currently telling us what to do! // GCS is currently telling us what to do!
} else { } else {
return; return;

Loading…
Cancel
Save