Fix retry_save during Yaesu poweron

pull/468/head
Michael Black W9MDB 2020-12-09 18:09:49 -06:00
rodzic 504a01913f
commit 7a93ce3fb2
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -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);
}