In icom.c have set_vfo return RIG_OK immediately when VFO_CURR is requested

https://github.com/Hamlib/Hamlib/issues/625
pull/649/head
Michael Black W9MDB 2021-03-23 12:08:58 -05:00
rodzic 86ca6de85f
commit eb952ad75f
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -7616,6 +7616,7 @@ static int set_vfo_curr(RIG *rig, vfo_t vfo, vfo_t curr_vfo)
rig_debug(RIG_DEBUG_TRACE, "%s: Asking for currVFO, currVFO=%s\n", __func__,
rig_strvfo(rig->state.current_vfo));
vfo = rig->state.current_vfo;
RETURNFUNC(RIG_OK);
}
if (vfo == RIG_VFO_MAIN && VFO_HAS_A_B_ONLY)