Add TS950S/SDX data mode capability

pull/224/head
Michael Black 2020-04-03 10:24:01 -05:00
rodzic 9c338a5c9f
commit 4f975144e4
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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);