Add Flex 6400/6600

pull/1/head
Michael Black W9MDB 2017-12-25 10:24:08 -05:00
rodzic 1dea67a656
commit f4629f6669
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -68,6 +68,10 @@ int verify_flexradio_id(RIG *rig, char *id)
rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6500R)\n", __func__, id);
else if (strcmp("907", idptr) == 0)
rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6300)\n", __func__, id);
else if (strcmp("908", idptr) == 0)
rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6400)\n", __func__, id);
else if (strcmp("909", idptr) == 0)
rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6600)\n", __func__, id);
else {
rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig (%s) is not a Flex 6000 Series\n", __func__, id);
return -RIG_EPROTO;

Wyświetl plik

@ -601,6 +601,8 @@ int kenwood_open(RIG *rig)
|| !strcmp ("ID905", id) /* PowerSDR Flex-6500 */
|| !strcmp ("ID906", id) /* PowerSDR Flex-6700R */
|| !strcmp ("ID907", id) /* PowerSDR Flex-6300 */
|| !strcmp ("ID908", id) /* PowerSDR Flex-6400 */
|| !strcmp ("ID909", id) /* PowerSDR Flex-6600 */
)
{
priv->is_emulation = 1; /* Emulations don't have SAT mode */