Add FT991 to 60M exception

pull/1242/head
Mike Black W9MDB 2023-01-15 10:17:54 -06:00
rodzic 29a80fb496
commit 77ce6b6dc3
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -824,6 +824,9 @@ int newcat_60m_exception(RIG *rig, freq_t freq, mode_t mode)
return -RIG_EINVAL;
}
// some rigs need to skip freq/mode settings as 60M only operates in memory mode
if (is_ft991) { return 1; }
if (!is_ftdx10 && !is_ft710 && !is_ftdx101d && !is_ftdx101mp) { return 0; }
rig_debug(RIG_DEBUG_VERBOSE, "%s: 60M exception ignoring freq/mode commands\n",

Wyświetl plik

@ -50,7 +50,7 @@
typedef char ncboolean;
/* shared function version */
#define NEWCAT_VER "20230109"
#define NEWCAT_VER "20230115"
/* Hopefully large enough for future use, 128 chars plus '\0' */
#define NEWCAT_DATA_LEN 129