×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

CEM25p "Slewing to home position" + "park" = bug or missing feature [SOLVED]

  • Posts: 2255
  • Thank you received: 223
I have noticed something not right.

If I park the mount (in a position other that the counterweight down...) and then issue a "go to Home" slew, the mount WILL execute the command despite that the mount is parked.
However I cannot do a normal slew, that's blocked as it should.

I do think the same must apply to the "go home" feature
3 years 6 months ago #61014

Please Log in or Create an account to join the conversation.

  • Posts: 2255
  • Thank you received: 223
I was able to fix it by adding the following lines of code:
github.com/Trigger-broom-289/indi/commit...06a05064b3c4d93f99c8
if (TrackState == SCOPE_PARKED)
    		   {
		       LOG_ERROR("Please unpark the mount before issuing any motion commands.");
        	       return false;
    		   }
 
		    if (driver->gotoHome() == false)

to the ieqpro.cpp driver
I have issued a PR

3 years 6 months ago #61247

Please Log in or Create an account to join the conversation.

  • Posts: 2255
  • Thank you received: 223
My pull request has been merged, thanks Jasem B)
3 years 6 months ago #61375

Please Log in or Create an account to join the conversation.

Time to create page: 0.203 seconds