Skip to content

Commit

Permalink
Sub: motor detection mode does not require valid position
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Jun 23, 2024
1 parent 96682b1 commit 9fdf52c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArduSub/mode.h
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ class ModeMotordetect : public Mode
virtual void run() override;

bool init(bool ignore_checks) 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 true; }
bool is_autopilot() const override { return true; }
Expand Down

0 comments on commit 9fdf52c

Please sign in to comment.