kopia lustrzana https://github.com/Hamlib/Hamlib
Increase PowerSDR retries from 3 to 10 to allow for Flex 1500 band change delay
https://github.com/Hamlib/Hamlib/issues/992pull/993/head
rodzic
bdd36892e0
commit
4e9962e90b
|
@ -1230,7 +1230,7 @@ const struct rig_caps powersdr_caps =
|
||||||
RIG_MODEL(RIG_MODEL_POWERSDR),
|
RIG_MODEL(RIG_MODEL_POWERSDR),
|
||||||
.model_name = "PowerSDR/Thetis",
|
.model_name = "PowerSDR/Thetis",
|
||||||
.mfg_name = "FlexRadio/ANAN",
|
.mfg_name = "FlexRadio/ANAN",
|
||||||
.version = "20220318.0",
|
.version = "20220320.0",
|
||||||
.copyright = "LGPL",
|
.copyright = "LGPL",
|
||||||
.status = RIG_STATUS_STABLE,
|
.status = RIG_STATUS_STABLE,
|
||||||
.rig_type = RIG_TYPE_TRANSCEIVER,
|
.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
|
// We need at least 3 seconds to do profile switches
|
||||||
// Hitting the timeout is OK as long as we retry
|
// Hitting the timeout is OK as long as we retry
|
||||||
// Previous note showed FA/FB may take up to 500ms on band change
|
// 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
|
.timeout = 800, // some band transitions can take 600ms
|
||||||
.retry = 3,
|
.retry = 10,
|
||||||
|
|
||||||
.has_get_func = POWERSDR_FUNC_ALL,
|
.has_get_func = POWERSDR_FUNC_ALL,
|
||||||
.has_set_func = POWERSDR_FUNC_ALL,
|
.has_set_func = POWERSDR_FUNC_ALL,
|
||||||
|
|
Ładowanie…
Reference in New Issue