[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. b5de94da2abcf2ba4edf4
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-13 15:42:48
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via b5de94da2abcf2ba4edf4ced94f1531f6b416e13 (commit) from b4627b75ba065d22c85fa71d045486702be1e199 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b5de94da2abcf2ba4edf4ced94f1531f6b416e13 Author: Michael Black W9MDB <mdb...@ya...> Date: Wed Jan 13 09:40:20 2021 -0600 Try adding an 11ms delay on set commands before the ID; is sent FT2000 is seeing repeated ?; responses and timing may be important https://github.com/Hamlib/Hamlib/issues/505 diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 245dcab9..d4ce36e8 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -9396,6 +9396,7 @@ int newcat_set_cmd(RIG *rig) return RIG_OK; } + hl_usleep(11*1000); // some Yaeus rigs have 10ms timeout -- does this fix the ?; reponse problem? /* send the verification command */ rig_debug(RIG_DEBUG_TRACE, "cmd_str = %s\n", verify_cmd); ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |