kopia lustrzana https://github.com/Hamlib/Hamlib
For kenwood rigs reset split after set_vfo FR command if needed
Side effect of this change is support of reverse split by changing to VFOB https://github.com/Hamlib/Hamlib/issues/746pull/788/head
rodzic
8092588d97
commit
7b61057202
|
@ -1118,6 +1118,20 @@ int kenwood_set_vfo(RIG *rig, vfo_t vfo)
|
||||||
|
|
||||||
snprintf(cmdbuf, sizeof(cmdbuf), "FR%c", vfo_function);
|
snprintf(cmdbuf, sizeof(cmdbuf), "FR%c", vfo_function);
|
||||||
|
|
||||||
|
// as we change VFO we will change split to the other VFO
|
||||||
|
// some rigs turn split off with FR command
|
||||||
|
if (priv->split)
|
||||||
|
{
|
||||||
|
if (vfo_function == '0')
|
||||||
|
{
|
||||||
|
strcat(cmdbuf, ";FT1");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
strcat(cmdbuf, ";FT0");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (RIG_IS_TS50 || RIG_IS_TS940)
|
if (RIG_IS_TS50 || RIG_IS_TS940)
|
||||||
{
|
{
|
||||||
cmdbuf[1] = 'N';
|
cmdbuf[1] = 'N';
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "token.h"
|
#include "token.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#define BACKEND_VER "20210827"
|
#define BACKEND_VER "20210828"
|
||||||
|
|
||||||
#define EOM_KEN ';'
|
#define EOM_KEN ';'
|
||||||
#define EOM_TH '\r'
|
#define EOM_TH '\r'
|
||||||
|
|
Ładowanie…
Reference in New Issue