mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
If VFO_RX requested use rx_vfo
https://github.com/Hamlib/Hamlib/issues/866
This commit is contained in:
parent
4502731644
commit
f044c2bfdd
1 changed files with 5 additions and 1 deletions
|
|
@ -1775,7 +1775,11 @@ vfo_t HAMLIB_API vfo_fixup(RIG *rig, vfo_t vfo, split_t split)
|
|||
}
|
||||
}
|
||||
|
||||
if (vfo == RIG_VFO_RX || vfo == RIG_VFO_A || vfo == RIG_VFO_MAIN)
|
||||
if (vfo == RIG_VFO_RX)
|
||||
{
|
||||
vfo = rig->state.rx_vfo;
|
||||
}
|
||||
else if (vfo == RIG_VFO_RX || vfo == RIG_VFO_A || vfo == RIG_VFO_MAIN)
|
||||
{
|
||||
vfo = RIG_VFO_A; // default to mapping VFO_MAIN to VFO_A
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue