Fix k4_set/get ptt

pull/875/head
Mike Black W9MDB 2021-11-10 17:09:51 -06:00
rodzic ff89d6441e
commit 65cc461918
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2674,7 +2674,7 @@ int k4_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt)
return -RIG_EINVAL; return -RIG_EINVAL;
} }
retval = kenwood_safe_transaction(rig, "TQ", pttbuf, 6, 4); retval = kenwood_safe_transaction(rig, "TQ", pttbuf, 6, 3);
if (retval != RIG_OK) if (retval != RIG_OK)
{ {
@ -2712,7 +2712,7 @@ int k4_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt)
do do
{ {
hl_usleep(10*1000); hl_usleep(10*1000);
retval = kenwood_safe_transaction(rig, "TQ", pttbuf, 6, 4); retval = kenwood_safe_transaction(rig, "TQ", pttbuf, 6, 3);
if (retval != RIG_OK) if (retval != RIG_OK)
{ {