From 4e9962e90b97d67525616be182dcf837fcab011d Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 20 Mar 2022 12:39:43 -0500 Subject: [PATCH] Increase PowerSDR retries from 3 to 10 to allow for Flex 1500 band change delay https://github.com/Hamlib/Hamlib/issues/992 --- rigs/kenwood/flex6xxx.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rigs/kenwood/flex6xxx.c b/rigs/kenwood/flex6xxx.c index f5b015a6f..a9d30b28f 100644 --- a/rigs/kenwood/flex6xxx.c +++ b/rigs/kenwood/flex6xxx.c @@ -1230,7 +1230,7 @@ const struct rig_caps powersdr_caps = RIG_MODEL(RIG_MODEL_POWERSDR), .model_name = "PowerSDR/Thetis", .mfg_name = "FlexRadio/ANAN", - .version = "20220318.0", + .version = "20220320.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -1249,8 +1249,9 @@ const struct rig_caps powersdr_caps = // We need at least 3 seconds to do profile switches // Hitting the timeout is OK as long as we retry // Previous note showed FA/FB may take up to 500ms on band change + // Flex 1500 needs about 6 seconds for a band change in PowerSDR .timeout = 800, // some band transitions can take 600ms - .retry = 3, + .retry = 10, .has_get_func = POWERSDR_FUNC_ALL, .has_set_func = POWERSDR_FUNC_ALL,