IC910 was doing TX=VFOB RX=VFOA

Need to make allowances for Main/Sub split commands eventually
pull/153/head
Michael Black 2019-12-04 22:32:37 -06:00
rodzic ff395cc5c0
commit 135ed6686e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6599353EC683404D
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -3296,11 +3296,11 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
case RIG_SPLIT_ON: case RIG_SPLIT_ON:
split_sc = S_SPLT_ON; split_sc = S_SPLT_ON;
// Need to allow for SATMODE split in here
if (!priv->split_on) // only need to do this if split is not on already if (!priv->split_on) // only need to do this if split is not on already
{ {
/* ensure VFO A is Rx and VFO B is Tx as we assume that elsewhere */ /* ensure VFO A is Rx and VFO B is Tx as we assume that elsewhere */
if (VFO_HAS_A_B_ONLY) if (VFO_HAS_A_B)
{ {
if (RIG_OK != (rc = icom_set_vfo(rig, RIG_VFO_A))) { return rc; } if (RIG_OK != (rc = icom_set_vfo(rig, RIG_VFO_A))) { return rc; }
} }

Wyświetl plik

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