Fix IC-910 behavior with gpredict

Now allows switching between full duplex, split, and non-split mode
https://github.com/Hamlib/Hamlib/issues/237
pull/290/head
Michael Black W9MDB 2020-06-04 10:37:20 -05:00
rodzic 2a05008bd4
commit d9d1074f24
2 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -4166,7 +4166,7 @@ int icom_get_split_freq(RIG *rig, vfo_t vfo, freq_t *tx_freq)
return retval;
}
if (RIG_OK != (retval = icom_get_freq(rig, RIG_VFO_CURR, tx_freq)))
if (RIG_OK != (retval = icom_get_freq(rig, tx_vfo, tx_freq)))
{
return retval;
}
@ -4668,7 +4668,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
}
// This should automaticaly switch between satmode on/off based on the requested split vfo
if (tx_vfo == RIG_VFO_SUB && !rig->state.cache.satmode)
if (tx_vfo == RIG_VFO_SUB || tx_vfo == RIG_VFO_MAIN && !rig->state.cache.satmode)
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: VFO_SUB and satmode is off so turning on\n",
__func__);
@ -4676,9 +4676,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
rig->state.cache.satmode = 1;
priv->tx_vfo = RIG_VFO_SUB;
}
else if ((tx_vfo == RIG_VFO_B && rig->state.cache.satmode)
|| (tx_vfo == RIG_VFO_A
&& rig->state.cache.satmode))
else if ((tx_vfo == RIG_VFO_A || tx_vfo == RIG_VFO_B) && rig->state.cache.satmode)
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: VFO_B and satmode is on so turning off\n",
__func__);

Wyświetl plik

@ -31,7 +31,7 @@
#include <sys/time.h>
#endif
#define BACKEND_VER "20200603"
#define BACKEND_VER "20200604"
/*
* defines used by comp_cal_str in rig.c