From 463bc7ae3b7eb1225a94732685da7475f79c033b Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 8 Dec 2014 12:23:06 +0000 Subject: [PATCH] Increase communications timeout for Icom rigs Icom users, who use the K9JM CI-V router to protect their PW-1 amplifiers from damage due to Icom's broken CI-V protocol handling, require a 1s delay after opening the serial port. This is due to the router using an Arduino & Arduino USB adapter that employs a bootloader which holds the RS-232 interface for 1s after reset (DTR releases reset). Hamlib already has a retry and timeout mechanism which was set to 3 and 200ms respectively for most Icom rigs. This change increses that timeout to 1s. The increaased timeout will have little or no impact on clients as it only comes into play if there is a problem. --- icom/delta2.c | 2 +- icom/ic1275.c | 2 +- icom/ic271.c | 2 +- icom/ic275.c | 2 +- icom/ic471.c | 2 +- icom/ic475.c | 2 +- icom/ic7000.c | 2 +- icom/ic703.c | 2 +- icom/ic706.c | 6 +++--- icom/ic707.c | 2 +- icom/ic7100.c | 2 +- icom/ic718.c | 2 +- icom/ic7200.c | 2 +- icom/ic725.c | 2 +- icom/ic726.c | 2 +- icom/ic728.c | 2 +- icom/ic735.c | 2 +- icom/ic736.c | 2 +- icom/ic737.c | 2 +- icom/ic738.c | 2 +- icom/ic7410.c | 2 +- icom/ic746.c | 4 ++-- icom/ic751.c | 2 +- icom/ic756.c | 8 ++++---- icom/ic7600.c | 2 +- icom/ic761.c | 2 +- icom/ic765.c | 2 +- icom/ic7700.c | 2 +- icom/ic775.c | 2 +- icom/ic78.c | 2 +- icom/ic7800.c | 2 +- icom/ic781.c | 2 +- icom/ic820h.c | 2 +- icom/ic821h.c | 2 +- icom/ic910.c | 2 +- icom/ic9100.c | 2 +- icom/ic92d.c | 2 +- icom/ic970.c | 2 +- icom/icr10.c | 2 +- icom/icr20.c | 2 +- icom/icr7000.c | 4 ++-- icom/icr71.c | 2 +- icom/icr72.c | 2 +- icom/icr75.c | 2 +- icom/icr8500.c | 2 +- icom/icrx7.c | 2 +- icom/id1.c | 2 +- icom/omni.c | 2 +- icom/os456.c | 2 +- icom/os535.c | 2 +- 50 files changed, 57 insertions(+), 57 deletions(-) diff --git a/icom/delta2.c b/icom/delta2.c index cb34ba652..5936a6776 100644 --- a/icom/delta2.c +++ b/icom/delta2.c @@ -79,7 +79,7 @@ const struct rig_caps delta2_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic1275.c b/icom/ic1275.c index 1daecdda5..7bb889cd7 100644 --- a/icom/ic1275.c +++ b/icom/ic1275.c @@ -62,7 +62,7 @@ const struct rig_caps ic1275_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic271.c b/icom/ic271.c index 93c558b46..792f23f9a 100644 --- a/icom/ic271.c +++ b/icom/ic271.c @@ -71,7 +71,7 @@ const struct rig_caps ic271_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic275.c b/icom/ic275.c index 4e7f8458f..6a7ae7c77 100644 --- a/icom/ic275.c +++ b/icom/ic275.c @@ -66,7 +66,7 @@ const struct rig_caps ic275_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic471.c b/icom/ic471.c index 5a2c18f51..1673252f6 100644 --- a/icom/ic471.c +++ b/icom/ic471.c @@ -70,7 +70,7 @@ const struct rig_caps ic471_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic475.c b/icom/ic475.c index ed9662611..de8ef97ac 100644 --- a/icom/ic475.c +++ b/icom/ic475.c @@ -66,7 +66,7 @@ const struct rig_caps ic475_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic7000.c b/icom/ic7000.c index 114fdea00..799436f7f 100644 --- a/icom/ic7000.c +++ b/icom/ic7000.c @@ -133,7 +133,7 @@ const struct rig_caps ic7000_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7000_FUNCS, .has_set_func = IC7000_FUNCS, diff --git a/icom/ic703.c b/icom/ic703.c index 406f18957..8f50e84a0 100644 --- a/icom/ic703.c +++ b/icom/ic703.c @@ -102,7 +102,7 @@ const struct rig_caps ic703_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC703_FUNC_ALL, .has_set_func = IC703_FUNC_ALL, diff --git a/icom/ic706.c b/icom/ic706.c index c4376251b..3f72ea38b 100644 --- a/icom/ic706.c +++ b/icom/ic706.c @@ -156,7 +156,7 @@ const struct rig_caps ic706_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, @@ -289,7 +289,7 @@ const struct rig_caps ic706mkii_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, @@ -445,7 +445,7 @@ const struct rig_caps ic706mkiig_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC706IIG_FUNC_ALL, .has_set_func = IC706IIG_FUNC_ALL, diff --git a/icom/ic707.c b/icom/ic707.c index cd3e6e1b2..df6b59cd6 100644 --- a/icom/ic707.c +++ b/icom/ic707.c @@ -76,7 +76,7 @@ const struct rig_caps ic707_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic7100.c b/icom/ic7100.c index ff3c80224..5a7ab6cf2 100644 --- a/icom/ic7100.c +++ b/icom/ic7100.c @@ -120,7 +120,7 @@ const struct rig_caps ic7100_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7100_FUNC_ALL, .has_set_func = IC7100_FUNC_ALL | RIG_FUNC_RESUME, diff --git a/icom/ic718.c b/icom/ic718.c index 4ded185d3..85aeac3ed 100644 --- a/icom/ic718.c +++ b/icom/ic718.c @@ -94,7 +94,7 @@ const struct rig_caps ic718_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC718_FUNC_ALL, .has_set_func = IC718_FUNC_ALL, diff --git a/icom/ic7200.c b/icom/ic7200.c index 1500f13f5..7b5a7520e 100644 --- a/icom/ic7200.c +++ b/icom/ic7200.c @@ -103,7 +103,7 @@ const struct rig_caps ic7200_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7200_FUNCS, .has_set_func = IC7200_FUNCS, diff --git a/icom/ic725.c b/icom/ic725.c index 0507a4ef5..eb7eedbf6 100644 --- a/icom/ic725.c +++ b/icom/ic725.c @@ -74,7 +74,7 @@ const struct rig_caps ic725_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic726.c b/icom/ic726.c index 098299502..1b5ae6789 100644 --- a/icom/ic726.c +++ b/icom/ic726.c @@ -76,7 +76,7 @@ const struct rig_caps ic726_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic728.c b/icom/ic728.c index c9f570a04..f558ae48b 100644 --- a/icom/ic728.c +++ b/icom/ic728.c @@ -76,7 +76,7 @@ const struct rig_caps ic728_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic735.c b/icom/ic735.c index 8c79cde38..37e68649c 100644 --- a/icom/ic735.c +++ b/icom/ic735.c @@ -73,7 +73,7 @@ const struct rig_caps ic735_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic736.c b/icom/ic736.c index 9d92abf96..10a7764c8 100644 --- a/icom/ic736.c +++ b/icom/ic736.c @@ -80,7 +80,7 @@ const struct rig_caps ic736_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic737.c b/icom/ic737.c index 07935ca29..f5510a37e 100644 --- a/icom/ic737.c +++ b/icom/ic737.c @@ -76,7 +76,7 @@ const struct rig_caps ic737_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic738.c b/icom/ic738.c index 2da0fc619..499b122a4 100644 --- a/icom/ic738.c +++ b/icom/ic738.c @@ -80,7 +80,7 @@ const struct rig_caps ic738_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic7410.c b/icom/ic7410.c index 64fe15daa..43c959f4d 100644 --- a/icom/ic7410.c +++ b/icom/ic7410.c @@ -96,7 +96,7 @@ const struct rig_caps ic7410_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7410_FUNCS, .has_set_func = IC7410_FUNCS, diff --git a/icom/ic746.c b/icom/ic746.c index 6048f7338..2d8517193 100644 --- a/icom/ic746.c +++ b/icom/ic746.c @@ -186,7 +186,7 @@ const struct rig_caps ic746_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC746_FUNC_ALL, .has_set_func = IC746_FUNC_ALL, @@ -393,7 +393,7 @@ const struct rig_caps ic746pro_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC746_FUNC_ALL, .has_set_func = IC746_FUNC_ALL, diff --git a/icom/ic751.c b/icom/ic751.c index 06954c889..dead4fc54 100644 --- a/icom/ic751.c +++ b/icom/ic751.c @@ -102,7 +102,7 @@ const struct rig_caps ic751_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic756.c b/icom/ic756.c index 3a3c0bab5..0b6fea35e 100644 --- a/icom/ic756.c +++ b/icom/ic756.c @@ -137,7 +137,7 @@ const struct rig_caps ic756_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, @@ -278,7 +278,7 @@ const struct rig_caps ic756pro_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC756PRO_FUNC_ALL, .has_set_func = IC756PRO_FUNC_ALL, @@ -483,7 +483,7 @@ const struct rig_caps ic756pro2_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC756PRO_FUNC_ALL, .has_set_func = IC756PRO_FUNC_ALL, @@ -815,7 +815,7 @@ const struct rig_caps ic756pro3_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC756PRO_FUNC_ALL, .has_set_func = IC756PRO_FUNC_ALL, diff --git a/icom/ic7600.c b/icom/ic7600.c index c0a1de3c3..542c5d895 100644 --- a/icom/ic7600.c +++ b/icom/ic7600.c @@ -112,7 +112,7 @@ const struct rig_caps ic7600_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7600_FUNCS, .has_set_func = IC7600_FUNCS, diff --git a/icom/ic761.c b/icom/ic761.c index b0d78e23f..16311e398 100644 --- a/icom/ic761.c +++ b/icom/ic761.c @@ -74,7 +74,7 @@ const struct rig_caps ic761_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic765.c b/icom/ic765.c index 76e102223..90905caa2 100644 --- a/icom/ic765.c +++ b/icom/ic765.c @@ -76,7 +76,7 @@ const struct rig_caps ic765_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic7700.c b/icom/ic7700.c index 3a8e87774..3ed14396f 100644 --- a/icom/ic7700.c +++ b/icom/ic7700.c @@ -96,7 +96,7 @@ const struct rig_caps ic7700_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7700_FUNCS, .has_set_func = IC7700_FUNCS, diff --git a/icom/ic775.c b/icom/ic775.c index d146ccd2e..b6727e147 100644 --- a/icom/ic775.c +++ b/icom/ic775.c @@ -73,7 +73,7 @@ const struct rig_caps ic775_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic78.c b/icom/ic78.c index 643f73c16..3ada8c558 100644 --- a/icom/ic78.c +++ b/icom/ic78.c @@ -86,7 +86,7 @@ const struct rig_caps ic78_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC78_FUNC_ALL, .has_set_func = IC78_FUNC_ALL, diff --git a/icom/ic7800.c b/icom/ic7800.c index 3a901c72a..e3b3b770c 100644 --- a/icom/ic7800.c +++ b/icom/ic7800.c @@ -102,7 +102,7 @@ const struct rig_caps ic7800_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC7800_FUNCS, .has_set_func = IC7800_FUNCS, diff --git a/icom/ic781.c b/icom/ic781.c index 1e0ccaf08..eadb1414d 100644 --- a/icom/ic781.c +++ b/icom/ic781.c @@ -77,7 +77,7 @@ const struct rig_caps ic781_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic820h.c b/icom/ic820h.c index f5bf703a9..12f471981 100644 --- a/icom/ic820h.c +++ b/icom/ic820h.c @@ -72,7 +72,7 @@ const struct rig_caps ic820h_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic821h.c b/icom/ic821h.c index 5d5600d9d..a15919f94 100644 --- a/icom/ic821h.c +++ b/icom/ic821h.c @@ -72,7 +72,7 @@ const struct rig_caps ic821h_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/ic910.c b/icom/ic910.c index 26f15cf2d..7f9377b19 100644 --- a/icom/ic910.c +++ b/icom/ic910.c @@ -269,7 +269,7 @@ const struct rig_caps ic910_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC910_FUNC_ALL, .has_set_func = IC910_FUNC_ALL | RIG_FUNC_RESUME, diff --git a/icom/ic9100.c b/icom/ic9100.c index 76c7bdf42..fb6daaf32 100644 --- a/icom/ic9100.c +++ b/icom/ic9100.c @@ -120,7 +120,7 @@ const struct rig_caps ic9100_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC9100_FUNC_ALL, .has_set_func = IC9100_FUNC_ALL | RIG_FUNC_RESUME, diff --git a/icom/ic92d.c b/icom/ic92d.c index 43e2ad557..f437e6ff5 100644 --- a/icom/ic92d.c +++ b/icom/ic92d.c @@ -113,7 +113,7 @@ const struct rig_caps ic92d_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = IC92D_FUNC_ALL, .has_set_func = IC92D_FUNC_ALL, diff --git a/icom/ic970.c b/icom/ic970.c index 9907dbd15..83e4f2a0f 100644 --- a/icom/ic970.c +++ b/icom/ic970.c @@ -67,7 +67,7 @@ const struct rig_caps ic970_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/icr10.c b/icom/icr10.c index ed3f07333..9c717732b 100644 --- a/icom/icr10.c +++ b/icom/icr10.c @@ -71,7 +71,7 @@ const struct rig_caps icr10_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR10_FUNC_ALL, .has_set_func = ICR10_FUNC_ALL, diff --git a/icom/icr20.c b/icom/icr20.c index 37a3c30b6..bc8d70bcc 100644 --- a/icom/icr20.c +++ b/icom/icr20.c @@ -75,7 +75,7 @@ const struct rig_caps icr20_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR20_FUNC_ALL, .has_set_func = ICR20_FUNC_ALL, diff --git a/icom/icr7000.c b/icom/icr7000.c index 17a49cd15..1073605c9 100644 --- a/icom/icr7000.c +++ b/icom/icr7000.c @@ -77,7 +77,7 @@ const struct rig_caps icr7000_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, @@ -187,7 +187,7 @@ const struct rig_caps icr7100_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR7100_FUNCS, diff --git a/icom/icr71.c b/icom/icr71.c index 527dba138..27c983dd7 100644 --- a/icom/icr71.c +++ b/icom/icr71.c @@ -66,7 +66,7 @@ const struct rig_caps icr71_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR71_FUNC_ALL, .has_set_func = ICR71_FUNC_ALL, diff --git a/icom/icr72.c b/icom/icr72.c index b1368578a..510213f86 100644 --- a/icom/icr72.c +++ b/icom/icr72.c @@ -67,7 +67,7 @@ const struct rig_caps icr72_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR72_FUNC_ALL, .has_set_func = ICR72_FUNC_ALL, diff --git a/icom/icr75.c b/icom/icr75.c index 55961a1bd..e4161c34d 100644 --- a/icom/icr75.c +++ b/icom/icr75.c @@ -120,7 +120,7 @@ const struct rig_caps icr75_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 1, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICR75_FUNC_ALL, .has_set_func = ICR75_FUNC_ALL, diff --git a/icom/icr8500.c b/icom/icr8500.c index dae042e9f..60b5d7fd9 100644 --- a/icom/icr8500.c +++ b/icom/icr8500.c @@ -90,7 +90,7 @@ const struct rig_caps icr8500_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, diff --git a/icom/icrx7.c b/icom/icrx7.c index c388ce79c..2a70ff5c8 100644 --- a/icom/icrx7.c +++ b/icom/icrx7.c @@ -71,7 +71,7 @@ const struct rig_caps icrx7_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ICRX7_FUNC_ALL, .has_set_func = ICRX7_FUNC_ALL, diff --git a/icom/id1.c b/icom/id1.c index 9c328b67d..36082ff9a 100644 --- a/icom/id1.c +++ b/icom/id1.c @@ -89,7 +89,7 @@ const struct rig_caps id1_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = ID1_FUNC_ALL, .has_set_func = ID1_FUNC_ALL, diff --git a/icom/omni.c b/icom/omni.c index 09d41c1e6..9d3419206 100644 --- a/icom/omni.c +++ b/icom/omni.c @@ -81,7 +81,7 @@ const struct rig_caps omnivip_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/os456.c b/icom/os456.c index 3481120d5..a92551de1 100644 --- a/icom/os456.c +++ b/icom/os456.c @@ -91,7 +91,7 @@ const struct rig_caps os456_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE, diff --git a/icom/os535.c b/icom/os535.c index 5c79d66b4..75ec62718 100644 --- a/icom/os535.c +++ b/icom/os535.c @@ -83,7 +83,7 @@ const struct rig_caps os535_caps = { .serial_handshake = RIG_HANDSHAKE_NONE, .write_delay = 0, .post_write_delay = 0, -.timeout = 200, +.timeout = 1000, .retry = 3, .has_get_func = RIG_FUNC_NONE, .has_set_func = RIG_FUNC_NONE,