kopia lustrzana https://github.com/Hamlib/Hamlib
Add VFO_TX to kenwood.c set_vfo
rodzic
3df4571ec4
commit
7e1e90352e
|
@ -1097,6 +1097,16 @@ int kenwood_set_vfo(RIG *rig, vfo_t vfo)
|
||||||
vfo_function = '2';
|
vfo_function = '2';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case RIG_VFO_TX:
|
||||||
|
vfo_function = rig->state.tx_vfo == RIG_VFO_B ? '1' : '0';
|
||||||
|
break;
|
||||||
|
|
||||||
|
#if 0 // VFO_RX really should NOT be VFO_CURR as VFO_CURR could be either VFO
|
||||||
|
case RIG_VFO_RX:
|
||||||
|
vfo_function = rig->state.rx_vfo == RIG_VFO_B ? '1' : '0';
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case RIG_VFO_CURR:
|
case RIG_VFO_CURR:
|
||||||
TRACE;
|
TRACE;
|
||||||
rig->state.current_vfo = RIG_VFO_CURR;
|
rig->state.current_vfo = RIG_VFO_CURR;
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "token.h"
|
#include "token.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#define BACKEND_VER "20220204"
|
#define BACKEND_VER "20220206"
|
||||||
|
|
||||||
#define EOM_KEN ';'
|
#define EOM_KEN ';'
|
||||||
#define EOM_TH '\r'
|
#define EOM_TH '\r'
|
||||||
|
|
Ładowanie…
Reference in New Issue