Remove RX from kenwood.c -- did not put rig on VFOA

https://github.com/Hamlib/Hamlib/issues/746
pull/788/head
Mike Black W9MDB 2021-08-27 18:00:11 -05:00 zatwierdzone przez Wouter van Gulik
rodzic c04c4cbd2a
commit 124e2c30c7
1 zmienionych plików z 1 dodań i 5 usunięć

Wyświetl plik

@ -1118,10 +1118,6 @@ int kenwood_set_vfo(RIG *rig, vfo_t vfo)
snprintf(cmdbuf, sizeof(cmdbuf), "FR%c", vfo_function);
// FR can turn off split on some Kenwood rigs
// So we'll turn it back on just in case
if (priv->split && vfo_function == '0') { strcat(cmdbuf, ";FT1;RX"); }
if (RIG_IS_TS50 || RIG_IS_TS940)
{
cmdbuf[1] = 'N';
@ -1261,7 +1257,7 @@ int kenwood_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo)
// FR can turn off split on some Kenwood rigs
// So we'll turn it back on just in case
if (split && vfo_function=='0') { strcat(cmdbuf, ";FT1;RX"); }
if (split && vfo_function=='0') { strcat(cmdbuf, ";FT1"); }
retval = kenwood_transaction(rig, cmdbuf, NULL, 0);