Copter: do not allow arming in RTL

This commit is contained in:
Peter Barker 2018-01-25 11:34:57 +11:00 committed by Randy Mackay
parent 10e6fe43dd
commit a97301c0f2

View File

@ -901,7 +901,7 @@ public:
bool requires_GPS() const override { return true; }
bool has_manual_throttle() const override { return false; }
bool allows_arming(bool from_gcs) const override { return true; };
bool allows_arming(bool from_gcs) const override { return false; };
bool is_autopilot() const override { return true; }
RTLState state() { return _state; }