Make TS890S behave like TS990S for mode on VFOB

pull/1539/head
Mike Black W9MDB 2024-04-09 17:14:48 -05:00
rodzic 3dac2efb48
commit 0ba199448b
2 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -2442,7 +2442,7 @@ int kenwood_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
rig_debug(RIG_DEBUG_VERBOSE, "%s: kmode=%d, cmode=%c, datamode=%c\n", __func__, rig_debug(RIG_DEBUG_VERBOSE, "%s: kmode=%d, cmode=%c, datamode=%c\n", __func__,
kmode, c, data_mode); kmode, c, data_mode);
if (RIG_IS_TS990S) if (RIG_IS_TS990S || RIG_IS_TS890S)
{ {
/* The TS990s has targetable read mode but can only set the mode /* The TS990s has targetable read mode but can only set the mode
of the current VFO :( So we need to toggle the operating VFO of the current VFO :( So we need to toggle the operating VFO
@ -2711,7 +2711,7 @@ int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
RETURNFUNC2(RIG_OK); RETURNFUNC2(RIG_OK);
} }
if (RIG_IS_TS990S) if (RIG_IS_TS990S || RIG_IS_TS890S)
{ {
char c; char c;
@ -2725,8 +2725,10 @@ int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
switch (vfo) switch (vfo)
{ {
case RIG_VFO_A:
case RIG_VFO_MAIN: c = '0'; break; case RIG_VFO_MAIN: c = '0'; break;
case RIG_VFO_B:
case RIG_VFO_SUB: c = '1'; break; case RIG_VFO_SUB: c = '1'; break;
default: default:

Wyświetl plik

@ -28,7 +28,7 @@
#include "token.h" #include "token.h"
#include "idx_builtin.h" #include "idx_builtin.h"
#define BACKEND_VER "20240224" #define BACKEND_VER "20240405"
#define EOM_KEN ';' #define EOM_KEN ';'
#define EOM_TH '\r' #define EOM_TH '\r'