From a3e888dc3fa29de956cbbe735a0c2dc39f458a45 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Tue, 9 Nov 2021 11:17:51 -0600 Subject: [PATCH] Fix post_write_delay for K3 and zeroize for K4 https://github.com/Hamlib/Hamlib/commit/f5abd7a176f21ea9c74cc444b351510acfc90f8b --- rigs/kenwood/k3.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rigs/kenwood/k3.c b/rigs/kenwood/k3.c index 775262cec..1af0fcad5 100644 --- a/rigs/kenwood/k3.c +++ b/rigs/kenwood/k3.c @@ -183,7 +183,7 @@ const struct rig_caps k3_caps = RIG_MODEL(RIG_MODEL_K3), .model_name = "K3", .mfg_name = "Elecraft", - .version = BACKEND_VER ".18", + .version = BACKEND_VER ".19", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -197,7 +197,7 @@ const struct rig_caps k3_caps = .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, /* Timing between bytes */ - .post_write_delay = 0, /* Timing between command strings */ + .post_write_delay = 10, /* Timing between command strings */ .timeout = 1000, /* FA and FB make take up to 500 ms on band change */ .retry = 5, @@ -334,7 +334,7 @@ const struct rig_caps k3s_caps = RIG_MODEL(RIG_MODEL_K3S), .model_name = "K3S", .mfg_name = "Elecraft", - .version = BACKEND_VER ".14", + .version = BACKEND_VER ".15", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -348,7 +348,7 @@ const struct rig_caps k3s_caps = .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, /* Timing between bytes */ - .post_write_delay = 0, /* Timing between command strings */ + .post_write_delay = 10, /* Timing between command strings */ .timeout = 1000, /* FA and FB make take up to 500 ms on band change */ .retry = 5, @@ -497,7 +497,7 @@ const struct rig_caps k4_caps = .serial_stop_bits = 1, .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_NONE, - .write_delay = 10, /* Timing between bytes */ + .write_delay = 0, /* Timing between bytes */ .post_write_delay = 0, /* Timing between command strings */ .timeout = 1000, /* FA and FB make take up to 500 ms on band change */ .retry = 5,