Fix TenTec set split command

Hamlib-3.0
Bill Somerville 2015-03-15 01:23:40 +00:00
rodzic 9713e60b42
commit f82493b957
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -259,9 +259,9 @@ int tentec2_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
char retbuf[10] = "*Ox\r";
if (split == RIG_SPLIT_ON)
retbuf[1] = 1;
retbuf[2] = 1;
else
retbuf[1] = 0;
retbuf[2] = 0;
ret_len = 3;
retval = tentec_transaction( rig, retbuf, 4, retbuf, &ret_len );