In rig_set_split rx_vfo set to vfo value passed in

pull/948/head
Mike Black W9MDB 2022-01-30 07:28:52 -06:00
rodzic f90c6a95ce
commit 3c60636b80
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -3975,7 +3975,7 @@ int HAMLIB_API rig_set_split_mode(RIG *rig,
// some rigs exhibit undesirable flashing when swapping vfos in split
// so we turn it off, do our thing, and turn split back on
rx_vfo = RIG_VFO_A;
rx_vfo = vfo;
if (vfo == RIG_VFO_CURR && tx_vfo == RIG_VFO_B) { rx_vfo = RIG_VFO_A; }
else if (vfo == RIG_VFO_CURR && tx_vfo == RIG_VFO_A) { rx_vfo = RIG_VFO_B; }