Skip to content

Commit

Permalink
Add unpark which does not do anything but removes the warning
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Aug 27, 2023
1 parent 8185311 commit a37a9a9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/telescope/lx200am5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,15 @@ bool LX200AM5::Park()
return rc;
}

/////////////////////////////////////////////////////////////////////////////
///
/////////////////////////////////////////////////////////////////////////////
bool LX200AM5::UnPark()
{
TrackState = SCOPE_IDLE;
return true;
}

/////////////////////////////////////////////////////////////////////////////
///
/////////////////////////////////////////////////////////////////////////////
Expand Down
1 change: 1 addition & 0 deletions drivers/telescope/lx200am5.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class LX200AM5 : public LX200Generic

// Parking
virtual bool Park() override;
virtual bool UnPark() override;

private:

Expand Down

0 comments on commit a37a9a9

Please sign in to comment.