Fix get_vfo for Icom rigs in rigctlcom.c

pull/1513/head
Mike Black W9MDB 2024-02-19 10:42:25 -06:00
rodzic 1657a0e673
commit 91ec3afcda
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -962,9 +962,12 @@ static int handle_ts2000(void *arg)
if (retval != RIG_OK)
{
vfo = RIG_VFO_A;
#if 0 // so we work with rigs (like Icom) that have no get_vfo
rig_debug(RIG_DEBUG_ERR, "%s: get vfo failed: %s\n", __func__,
rigerror(retval));
return retval;
#endif
}