mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Fix reverse split for Yaeus VFO_SUB rigs
https://github.com/Hamlib/Hamlib/issues/1103
This commit is contained in:
parent
d9b1cfb404
commit
801d34e3fb
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue