Skip to content

Commit

Permalink
Copter: Guided_NoGPS does not require GPS
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Feb 6, 2019
1 parent 6145711 commit ee6fd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArduCopter/mode.h
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ class ModeGuidedNoGPS : public ModeGuided {
bool init(bool ignore_checks) override;
void run() override;

bool requires_GPS() const override { return true; }
bool requires_GPS() const override { return false; }
bool has_manual_throttle() const override { return false; }
bool allows_arming(bool from_gcs) const override { return from_gcs; }
bool is_autopilot() const override { return true; }
Expand Down

0 comments on commit ee6fd5a

Please sign in to comment.