×

INDI Library v2.0.6 is Released (02 Feb 2024)

Bi-monthly release with minor bug fixes and improvements

EQ6 does not respond properly

  • Posts: 54
  • Thank you received: 3
Nice, it seems to fix all the issues.

At least the eqmod simulator works and moves as it should (it didn't work before the fix)!.

Also, the latitude/longitude coordinates seem to work just fine.
10 years 2 months ago #523

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

  • Posts: 226
  • Thank you received: 88
Maybe other drivers should be checked. A simple grep in the source tree gives:
libindi/drivers/telescope/magellandriver.c:      if (f_scansexa(temp_string, value))
libindi/drivers/telescope/lx200apdriver.c:    if (f_scansexa(temp_string, value))
libindi/drivers/telescope/ieq45driver8407.c:  if (f_scansexa(temp_string, value))
libindi/drivers/telescope/lx200driver.c:  if (f_scansexa(temp_string, value))
And sscanf %f or %g:
grep -r 'sscanf.*%[fg]' libindi/*
libindi/drivers/telescope/ieq45driver8407.c:     if (sscanf(temp_string, "%f", &temp_number) != 1)
libindi/drivers/telescope/ieq45driver8407.c:    if (sscanf(temp_string, "%f#", &Freq) < 1)
libindi/drivers/telescope/ieq45driver8407.c:  if (sscanf(temp_string, "%f", &temp) < 1)
libindi/drivers/telescope/ieq45driver8407.c:  nbytes_read = sscanf(coords, " %g %g", &RA, &DEC);
libindi/drivers/telescope/ieq45driver8407.c:  nbytes_read = sscanf (coords, " %g %g", &RA, &DEC);
libindi/drivers/telescope/ieq45driver8407.c:  /*IDLog ("sscanf() RA = [%f]\n", RA * 0.0390625);*/
libindi/drivers/telescope/ieq45driver8407.c:  /*IDLog ("sscanf() DEC = [%f]\n", DEC * 0.0390625);*/
libindi/drivers/telescope/lx200driver.c:     if (sscanf(temp_string, "%f", &temp_number) != 1)
libindi/drivers/telescope/lx200driver.c:    if (sscanf(temp_string, "%f#", &Freq) < 1)
libindi/drivers/telescope/lx200driver.c:  if (sscanf(temp_string, "%f", &temp) < 1)
10 years 2 months ago #530

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

Time to create page: 0.926 seconds