From 679c84f3eef8c387a013bd98b68af8d430373b74 Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Wed, 9 Dec 2020 16:17:03 -0600 Subject: [PATCH] Only sleep on power on for Yaesu rigs --- rigs/yaesu/newcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 5e6a7de0c..fb2ed9510 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -2872,7 +2872,7 @@ int newcat_set_powerstat(RIG *rig, powerstat_t status) err = write_block(&state->rigport, priv->cmd_str, strlen(priv->cmd_str)); - hl_usleep(1000000); // give it a second to turn on + if (ps) hl_usleep(1000000); // give it a second to turn on return err; }