From 191ac98634581bdbed6c87bca6291473bc9cf336 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 19 Jan 2022 09:09:21 -0600 Subject: [PATCH] Change TS-440 post_write_delay to 20ms vs 0ms QRPLabs QDX is workign with TS-480 but not TS-440 and this is one of the differences between the two rigs https://github.com/Hamlib/Hamlib/issues/937 --- rigs/kenwood/ts440.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/kenwood/ts440.c b/rigs/kenwood/ts440.c index bc81aefac..446fb5bac 100644 --- a/rigs/kenwood/ts440.c +++ b/rigs/kenwood/ts440.c @@ -62,7 +62,7 @@ const struct rig_caps ts440_caps = RIG_MODEL(RIG_MODEL_TS440), .model_name = "TS-440S", .mfg_name = "Kenwood", - .version = IC10_VER ".0", + .version = IC10_VER ".1", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -76,7 +76,7 @@ const struct rig_caps ts440_caps = .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, - .post_write_delay = 0, + .post_write_delay = 20, .timeout = 200, .retry = 10,