From fd8e33d727edc5e926bcc8e26bf0ff9e0e8356b7 Mon Sep 17 00:00:00 2001 From: mdblack98 Date: Sun, 26 Apr 2020 11:35:14 -0500 Subject: [PATCH] Change ts950 write_delay to 0 -- tested with CT1AXS and his 950SDX https://github.com/Hamlib/Hamlib/issues/226 --- rigs/kenwood/ts950.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rigs/kenwood/ts950.c b/rigs/kenwood/ts950.c index 6716fa035..5c44c9bba 100644 --- a/rigs/kenwood/ts950.c +++ b/rigs/kenwood/ts950.c @@ -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,