From f92d2ea0f796ea30a94779a4d3c1b1e5ccad0b70 Mon Sep 17 00:00:00 2001 From: Nate Bargmann Date: Mon, 5 Nov 2012 21:06:33 -0600 Subject: [PATCH] IC-PCR1500/2500: Default write_delay to 0 Paul, KE7ZZ, reports the write_delay and post_write_delay defaults were too long and recommends that these models work with the values set to 0. Paul has analysis at: http://arachnoid.com/JRX/#USB_Transaction_Logging_and_Analysis --- pcr/pcr1500.c | 4 ++-- pcr/pcr2500.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pcr/pcr1500.c b/pcr/pcr1500.c index 4be878e6b..e85b8e840 100644 --- a/pcr/pcr1500.c +++ b/pcr/pcr1500.c @@ -72,8 +72,8 @@ const struct rig_caps pcr1500_caps = { .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_HARDWARE, - .write_delay = 12, - .post_write_delay = 2, + .write_delay = 0, + .post_write_delay = 0, .timeout = 400, .retry = 3, diff --git a/pcr/pcr2500.c b/pcr/pcr2500.c index 4d2e0ec2e..1bd1d907f 100644 --- a/pcr/pcr2500.c +++ b/pcr/pcr2500.c @@ -79,8 +79,8 @@ const struct rig_caps pcr2500_caps = { .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_HARDWARE, - .write_delay = 12, - .post_write_delay = 2, + .write_delay = 0, + .post_write_delay = 0, .timeout = 400, .retry = 3,