diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index e8e083585..15079b6c4 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -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)); diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 1e2f87d4f..bf6005aed 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -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