Force rig_set_split_freq_mode to use VFOB

https://github.com/Hamlib/Hamlib/issues/640
pull/649/head
Mike Black W9MDB 2021-03-31 22:55:36 -05:00
rodzic 42c842c1a5
commit ca090e258c
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -4039,6 +4039,10 @@ int HAMLIB_API rig_set_split_freq_mode(RIG *rig,
caps = rig->caps;
// in split mode we alwasy use VFOB
// in the future we may start using RIG_VFO_TX and let the backend figure out what VFO to use
vfo = RIG_VFO_B; // in split mode we always use VFOB
rig_debug(RIG_DEBUG_VERBOSE, "%s: vfo=%s, tx_freq=%.0f, tx_mode=%s, tx_width=%d\n", __func__, rig_strvfo(vfo), tx_freq, rig_strvfo(tx_mode), (int)tx_width);
if (caps->set_split_freq_mode)
{