From 73319f68b39f48191b88bd795b327a4d80c882b1 Mon Sep 17 00:00:00 2001 From: Michael Black Date: Sun, 22 Dec 2019 08:31:53 -0600 Subject: [PATCH] Make icom.c try power on when can't get freq during open --- icom/icom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/icom/icom.c b/icom/icom.c index 4989975b4..a24969b4f 100644 --- a/icom/icom.c +++ b/icom/icom.c @@ -594,8 +594,7 @@ int icom_rig_open(RIG *rig) rig_debug(RIG_DEBUG_VERBOSE, "%s get_freq retval=%s\n", __func__, rigerror(retval)); -// if (retval == RIG_ETIMEOUT || retval == RIG_ERJCTED || retval == RIG_BUSERROR) { - if (retval != RIG_OK) // maybe we need powerr on? + if (retval != RIG_OK) // maybe we need power on? { retval = rig_set_powerstat(rig, 1);