Fix elevation command for meade.c

https://github.com/Hamlib/Hamlib/issues/267
pull/281/head
Michael Black W9MDB 2020-05-28 23:53:25 -05:00
rodzic b1f97c69d3
commit 813d99cf8b
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -293,7 +293,7 @@ static int meade_set_position(ROT *rot, azimuth_t az, elevation_t el)
priv->target_az = az;
priv->target_el = el;
num_sprintf(cmd_str, ":Sz %03.0f*%02.0f#:Sa+%02.0f*%02.0f#:MA#",
num_sprintf(cmd_str, ":Sz %03.0f*%02.0f#:Sas+%02.0f*%02.0f#:MA#",
az_degrees, az_minutes, el_degrees, el_minutes);
meade_transaction(rot, cmd_str, return_str, &return_str_size, 3);
@ -451,7 +451,7 @@ const struct rot_caps meade_caps =
ROT_MODEL(ROT_MODEL_MEADE),
.model_name = "LX200/Autostar",
.mfg_name = "Meade",
.version = "0.2",
.version = "20200528",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rot_type = ROT_TYPE_AZEL,