kopia lustrzana https://github.com/Hamlib/Hamlib
Add copy VFOA>B for Elecraft K3, KX2, and KX3 when split mode is requested to ensure we avoid cross band error
https://github.com/Hamlib/Hamlib/issues/839pull/846/head
rodzic
468c5d2c03
commit
0e3393a1e0
|
@ -1339,6 +1339,18 @@ int kenwood_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo)
|
||||||
{
|
{
|
||||||
snprintf(cmdbuf, sizeof(cmdbuf), "AB3;FT%c", vfo_function);
|
snprintf(cmdbuf, sizeof(cmdbuf), "AB3;FT%c", vfo_function);
|
||||||
}
|
}
|
||||||
|
else if (rig->caps->rig_model == RIG_MODEL_K3)
|
||||||
|
{
|
||||||
|
snprintf(cmdbuf, sizeof(cmdbuf), "SWT13;FT%c", vfo_function);
|
||||||
|
}
|
||||||
|
else if (rig->caps->rig_model == RIG_MODEL_KX3)
|
||||||
|
{
|
||||||
|
snprintf(cmdbuf, sizeof(cmdbuf), "SWT25;FT%c", vfo_function);
|
||||||
|
}
|
||||||
|
else if (rig->caps->rig_model == RIG_MODEL_KX2)
|
||||||
|
{
|
||||||
|
snprintf(cmdbuf, sizeof(cmdbuf), "SWH44;FT%c", vfo_function);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
snprintf(cmdbuf, sizeof(cmdbuf), "FT%c", vfo_function);
|
snprintf(cmdbuf, sizeof(cmdbuf), "FT%c", vfo_function);
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "token.h"
|
#include "token.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#define BACKEND_VER "20211020"
|
#define BACKEND_VER "20211023"
|
||||||
|
|
||||||
#define EOM_KEN ';'
|
#define EOM_KEN ';'
|
||||||
#define EOM_TH '\r'
|
#define EOM_TH '\r'
|
||||||
|
|
Ładowanie…
Reference in New Issue