Fix reverse split for Yaeus VFO_SUB rigs

https://github.com/Hamlib/Hamlib/issues/1103
pull/1354/head
Mike Black W9MDB 2023-07-31 15:31:06 -05:00
rodzic d9b1cfb404
commit 801d34e3fb
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -7884,7 +7884,7 @@ int newcat_set_tx_vfo(RIG *rig, vfo_t tx_vfo)
p1 = p1 + 2; /* use non-Toggle commands */
// If VFOB is active then we change VFOB with FT3 instead of VFOA
if (rig->state.current_vfo == RIG_VFO_B) { p1++; }
if (rig->state.current_vfo == RIG_VFO_B || rig->state.current_vfo == RIG_VFO_SUB) { p1++; }
}
if (is_ftdx101d || is_ftdx101mp)

Wyświetl plik

@ -50,7 +50,7 @@
typedef char ncboolean;
/* shared function version */
#define NEWCAT_VER "20230724"
#define NEWCAT_VER "20230731"
/* Hopefully large enough for future use, 128 chars plus '\0' */
#define NEWCAT_DATA_LEN 129