Skip to content
Permalink
Browse files
Fix retry_save during Yaesu poweron
  • Loading branch information
mdblack98 committed Dec 10, 2020
1 parent 504a019 commit 7a93ce3fb23b5a2ecdb69cc32f5de3b2e4395446
Showing with 4 additions and 1 deletion.
  1. +4 −1 rigs/yaesu/newcat.c
@@ -2885,7 +2885,10 @@ int newcat_set_powerstat(RIG *rig, powerstat_t status)
hl_usleep(1000000);
retval = rig_get_freq(rig, RIG_VFO_A, &freq);

if (retval == RIG_OK) { return retval; }
if (retval == RIG_OK) {
rig->state.rigport.retry = retry_save;
return retval;
}

rig_debug(RIG_DEBUG_TRACE, "%s: Wait #%d for power up\n", __func__, i + 1);
}

0 comments on commit 7a93ce3

Please sign in to comment.