Add VFO_A set to IC9700 type Icom rigs

pull/224/head
Michael Black 2020-03-06 22:19:03 -06:00
rodzic 830d218731
commit 117379f42e
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -4298,10 +4298,15 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
rig_strvfo(priv->tx_vfo), rig_strvfo(priv->rx_vfo), rig_strvfo(tx_vfo));
tx_vfo = RIG_VFO_B;
// make sure we're on Main/VFOA
if (RIG_OK != (rc = icom_set_vfo(rig, RIG_VFO_MAIN)))
{
return rc;
}
if (RIG_OK != (rc = icom_set_vfo(rig, RIG_VFO_A)))
{
return rc;
}
}
else if (VFO_HAS_MAIN_SUB && (tx_vfo == RIG_VFO_MAIN || tx_vfo == RIG_VFO_SUB))
{