Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parking bug #60

Open
davner opened this issue Aug 11, 2021 · 1 comment
Open

Parking bug #60

davner opened this issue Aug 11, 2021 · 1 comment

Comments

@davner
Copy link
Member

davner commented Aug 11, 2021

RTS2 Parking Bug

Context

Sometimes the telescope cannot be moved by RTS2 and the logger displays something about the telescope cannot be moved during parking

This has been documented by multiple users.

10/29/2020

I'm having a problem where the telescope doesn't want to move through rts2. It moves fine when using xephem. I've had this issue a few times in this run, but this is the first time that it happened right on start.
2020-10-29 18:00:08.729440: command end with error -4 description: telescope move blocked
2020-10-29 18:00:08.729380: telescope cannot move during parking

12/20/2020

rts2 is having problems communicating with the telescope I think
I added an object to the queue, and it never moved to it. I looked at rts2mon and it is throwing errors like: “cannot move during park”
“telescope move blocked”
But its still stowed, and I can move it with xephem indi controls

Problem

The telescope cannot be moved by RTS2 in certain states and issues a error "telescope cannot move during parking".

  • The telescope can still be moved by XEpehem
  • It happened when trying to move to the flat position
  • It happens at other times during the night, so not just purely moving to flat

Solution

I believe this is happening anytime a move is sent by RTS2 and the motion boolean value is not being configured correctly. Looking at the TCS-NG telescope driver, you can see that in the startmovefixed function, the motion value is never set to TCSNG_MOVE_CALLED...unlike the parking function and the move to RA/DEC function. This only happens when moving to an AZ/EL position, like moving to the flat field.

The motion variable is referenced numerous times in the isMoving function.

I suggest we add on line 375 of the driver

int TCSNG::startMoveFixed (double tar_az, double tar_alt)
{
	char cmd[200];

	waitMove = NAN;
	snprintf (cmd, 200, "ELAZ %lf %lf", tar_alt, tar_az);

	ngconn->command (cmd);
        tcsngmoveState->setValueInteger (TCSNG_MOVE_CALLED);
	return 0;
}

and this could fix all or part of the parking bug.

@davner
Copy link
Member Author

davner commented Sep 16, 2021

This is not as simple as adding in that one line of code. It required adding in a ramp up time, modifying timeouts, and changing the logic of motion flags in our telescope driver.

We are happy with our modifications so far, however we are not closing this issue just yet.

I plan on merging the parking-bug branch into so-artn.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant