[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. e2475ac190d2542af2214
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-23 15:32:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via e2475ac190d2542af2214d2fd3f08f67bf7189c1 (commit) from d58f6a1d3c7c52c5d846d237a36eb1429d1e37d6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e2475ac190d2542af2214d2fd3f08f67bf7189c1 Author: Michael Black W9MDB <mdb...@ya...> Date: Sat Jan 23 09:32:09 2021 -0600 Disable 60m check for FT450 and FTDX5000 to see if they behave now on 60M diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index e8e08358..15079b6c 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 1e2f87d4..bf6005ae 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 ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 5 +++-- rigs/yaesu/newcat.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |