pull/224/head
Michael Black 2020-03-05 15:33:12 -06:00
commit 06a370ac69
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -1772,6 +1772,8 @@ int icom_set_vfo(RIG *rig, vfo_t vfo)
case RIG_VFO_SUB:
icvfo = S_SUB;
// If split is on these rigs can only split on Main/VFOB
if (VFO_HAS_MAIN_SUB_A_B_ONLY && priv->split_on) icvfo = S_VFOB;
break;
case RIG_VFO_TX:
@ -4288,7 +4290,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
priv->tx_vfo = RIG_VFO_B;
priv->rx_vfo = RIG_VFO_A;
rig_debug(RIG_DEBUG_TRACE,
"%s: tx=%s, rx=%s because tx_vfo=%s, charing tx_vfo to Main\n", __func__,
"%s: tx=%s, rx=%s because tx_vfo=%s, changing tx_vfo to Main\n", __func__,
rig_strvfo(priv->tx_vfo), rig_strvfo(priv->rx_vfo), rig_strvfo(tx_vfo));
tx_vfo = RIG_VFO_B;