Change ts950 write_delay to 0 -- tested with CT1AXS and his 950SDX

https://github.com/Hamlib/Hamlib/issues/226
pull/234/head
mdblack98 2020-04-26 11:35:14 -05:00
rodzic acc468fcfd
commit fd8e33d727
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -60,7 +60,7 @@ const struct rig_caps ts950s_caps =
RIG_MODEL(RIG_MODEL_TS950S),
.model_name = "TS-950S",
.mfg_name = "Kenwood",
.version = BACKEND_VER ".0",
.version = BACKEND_VER ".1",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
@ -73,7 +73,7 @@ const struct rig_caps ts950s_caps =
.serial_stop_bits = 2,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 50,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 500, // this rig takes over 250ms to respond an IF command
.retry = 10,
@ -216,7 +216,7 @@ const struct rig_caps ts950sdx_caps =
.serial_stop_bits = 2,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 50,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 500, // this rig takes over 250ms to respond an IF command
.retry = 10,