Disable 60m check for FT450 and FTDX5000 to see if they behave now on 60M

pull/518/head
Michael Black W9MDB 2021-01-23 09:32:09 -06:00
rodzic d58f6a1d3c
commit e2475ac190
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -743,8 +743,9 @@ int newcat_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
// did have FTDX3000 as not capable of 60M set_freq but as of 2021-01-21 it works
// special_60m = newcat_is_rig(rig, RIG_MODEL_FTDX3000);
/* duplicate the following line to add more rigs */
special_60m = newcat_is_rig(rig, RIG_MODEL_FTDX5000);
special_60m |= newcat_is_rig(rig, RIG_MODEL_FT450);
// disabled to check 2019 firmware on FTDX5000 and FT450 behavior
//special_60m = newcat_is_rig(rig, RIG_MODEL_FTDX5000);
//special_60m |= newcat_is_rig(rig, RIG_MODEL_FT450);
rig_debug(RIG_DEBUG_TRACE, "%s: special_60m=%d, 60m freq=%d, is_ftdx3000=%d\n",
__func__, special_60m, freq >= 5300000
&& freq <= 5410000, newcat_is_rig(rig, RIG_MODEL_FTDX3000));

Wyświetl plik

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