Skip to content

Commit

Permalink
Add SetFocuserBacklashEnabled implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Sep 17, 2024
1 parent a824870 commit 0cac130
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/focuser/lakeside.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,12 @@ bool Lakeside::SetFocuserBacklash(int32_t steps)
return setBacklash(steps);
}

bool Lakeside::SetFocuserBacklashEnabled(bool enabled)
{
INDI_UNUSED(enabled);
return true;
}

//
// Set backlash compensation
//
Expand Down
1 change: 1 addition & 0 deletions drivers/focuser/lakeside.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class Lakeside : public INDI::Focuser
virtual bool AbortFocuser() override;
virtual void TimerHit() override;
virtual bool ReverseFocuser(bool enabled) override;
virtual bool SetFocuserBacklashEnabled(bool enabled);
virtual bool SetFocuserBacklash(int32_t steps) override;

private:
Expand Down

0 comments on commit 0cac130

Please sign in to comment.