Add error condition in set_split_vfo in icom.c

pull/224/head
Michael Black 2020-02-13 23:25:11 -06:00
rodzic 2d6b5fabd0
commit 28e4311d7f
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -3973,7 +3973,6 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
case RIG_SPLIT_ON:
split_sc = S_SPLT_ON;
// Need to allow for SATMODE split in here
/* ensure VFO A is Rx and VFO B is Tx as we assume that elsewhere */
if (VFO_HAS_A_B && (vfo == RIG_VFO_A || vfo == RIG_VFO_B))
{
@ -3982,6 +3981,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
return rc;
}
}
// Does this allow for SATMODE split?
else if (vfo == RIG_VFO_MAIN) {
if (RIG_OK != (rc = icom_set_vfo(rig, RIG_VFO_MAIN)))
{
@ -3989,6 +3989,10 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
}
split_sc = S_SPLT_ON;
}
else {
rig_debug(RIG_DEBUG_ERR,"%s: split on vfo=%s not known\n", __func__, rig_strvfo(vfo));
return -RIG_EINVAL;
}
break;