Fix newcat_set_tx_vfo to use 2/3 instead of 0/1 -- need to check all other Yaesu rigs

https://github.com/Hamlib/Hamlib/issues/838
pull/875/head
Mike Black W9MDB 2021-11-03 13:39:53 -05:00
rodzic c1c549cbf3
commit 544fcf7194
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -6849,12 +6849,12 @@ int newcat_set_tx_vfo(RIG *rig, vfo_t tx_vfo)
{
case RIG_VFO_A:
case RIG_VFO_MAIN:
p1 = '0';
p1 = '2';
break;
case RIG_VFO_B:
case RIG_VFO_SUB:
p1 = '1';
p1 = '3';
break;
case RIG_VFO_MEM: