kopia lustrzana https://github.com/Hamlib/Hamlib
Add RX command to kenwood rigs hopefully setting VFO to VFOA after split set
FT450 and others turn split off doing FR0 and FT1; leaves the rig on VFOB https://github.com/Hamlib/Hamlib/issues/746pull/788/head
rodzic
fcdacb2540
commit
31696351a9
|
@ -1120,7 +1120,7 @@ int kenwood_set_vfo(RIG *rig, vfo_t vfo)
|
||||||
|
|
||||||
// FR can turn off split on some Kenwood rigs
|
// FR can turn off split on some Kenwood rigs
|
||||||
// So we'll turn it back on just in case
|
// So we'll turn it back on just in case
|
||||||
if (priv->split && vfo_function == '0') { strcat(cmdbuf, ";FT1"); }
|
if (priv->split && vfo_function == '0') { strcat(cmdbuf, ";FT1;RX"); }
|
||||||
|
|
||||||
if (RIG_IS_TS50 || RIG_IS_TS940)
|
if (RIG_IS_TS50 || RIG_IS_TS940)
|
||||||
{
|
{
|
||||||
|
@ -1261,7 +1261,7 @@ int kenwood_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo)
|
||||||
|
|
||||||
// FR can turn off split on some Kenwood rigs
|
// FR can turn off split on some Kenwood rigs
|
||||||
// So we'll turn it back on just in case
|
// So we'll turn it back on just in case
|
||||||
if (split && vfo_function=='0') { strcat(cmdbuf, ";FT1"); }
|
if (split && vfo_function=='0') { strcat(cmdbuf, ";FT1;RX"); }
|
||||||
|
|
||||||
retval = kenwood_transaction(rig, cmdbuf, NULL, 0);
|
retval = kenwood_transaction(rig, cmdbuf, NULL, 0);
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "token.h"
|
#include "token.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#define BACKEND_VER "20210826"
|
#define BACKEND_VER "20210827"
|
||||||
|
|
||||||
#define EOM_KEN ';'
|
#define EOM_KEN ';'
|
||||||
#define EOM_TH '\r'
|
#define EOM_TH '\r'
|
||||||
|
|
Ładowanie…
Reference in New Issue