In ft857.c add a 200ms delay during set_ptt OFF -- seems to take a while to come out of TX

https://github.com/Hamlib/Hamlib/issues/636
pull/649/head
Michael Black W9MDB 2021-03-30 10:53:47 -05:00
rodzic 4cc1515f90
commit 0063cb7549
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -155,7 +155,7 @@ const struct rig_caps ft857_caps =
RIG_MODEL(RIG_MODEL_FT857),
.model_name = "FT-857",
.mfg_name = "Yaesu",
.version = "20210221.0",
.version = "20210330.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
@ -1083,6 +1083,7 @@ int ft857_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt)
}
n = ft857_send_cmd(rig, index);
if (ptt == RIG_PTT_OFF) hl_usleep(200*1000); // FT857 takes a bit to come out of PTT
rig_force_cache_timeout(&((struct ft857_priv_data *)
rig->state.priv)->tx_status_tv);