From bacfa89f1ae0c97a903e6363417a6a875c50667b Mon Sep 17 00:00:00 2001 From: Jasem Mutlaq Date: Mon, 25 Dec 2023 13:51:56 +0300 Subject: [PATCH] Must set parked to false in unpark --- drivers/telescope/lx200am5.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/telescope/lx200am5.cpp b/drivers/telescope/lx200am5.cpp index a665124b83..1f5df2044a 100644 --- a/drivers/telescope/lx200am5.cpp +++ b/drivers/telescope/lx200am5.cpp @@ -466,6 +466,7 @@ bool LX200AM5::Park() bool LX200AM5::UnPark() { TrackState = SCOPE_IDLE; + SetParked(false); return true; }