From 4f975144e4e0173326dc3e02aad4b7fd5dfa1b16 Mon Sep 17 00:00:00 2001 From: Michael Black Date: Fri, 3 Apr 2020 10:24:01 -0500 Subject: [PATCH] Add TS950S/SDX data mode capability --- rigs/kenwood/kenwood.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/kenwood/kenwood.c b/rigs/kenwood/kenwood.c index 70565caad..133201204 100644 --- a/rigs/kenwood/kenwood.c +++ b/rigs/kenwood/kenwood.c @@ -1678,7 +1678,7 @@ int kenwood_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__); - if (RIG_IS_TS590S || RIG_IS_TS590SG) + if (RIG_IS_TS590S || RIG_IS_TS590SG || RIG_IS_TS950S || RIG_IS_TS950SDX) { /* supports DATA sub modes */ switch (mode) @@ -1955,7 +1955,7 @@ int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width) if (RIG_MODE_RTTYR == *mode) { *mode = RIG_MODE_PKTUSB; } } - if (RIG_IS_TS590S || RIG_IS_TS590SG) + if (RIG_IS_TS590S || RIG_IS_TS590SG || RIG_IS_TS950S || RIG_IS_TS950SDX) { /* supports DATA sub-modes */ retval = kenwood_safe_transaction(rig, "DA", modebuf, 6, 3);