From b5de94da2abcf2ba4edf4ced94f1531f6b416e13 Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Wed, 13 Jan 2021 09:40:20 -0600 Subject: [PATCH] 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 --- rigs/yaesu/newcat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 245dcab99..d4ce36e84 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);