[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. c20125a264443133205ae
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-24 00:02:38
|
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 c20125a264443133205aee0641647d8d01b0c50a (commit) from e2475ac190d2542af2214d2fd3f08f67bf7189c1 (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 c20125a264443133205aee0641647d8d01b0c50a Author: Michael Black W9MDB <mdb...@ya...> Date: Sat Jan 23 18:01:26 2021 -0600 In newcat.c prevent FT-2000 and FTDX1200 from sending BS commands on 60M but let them send 60M FA/FB commands diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 15079b6c..3d9c04ea 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -863,7 +863,10 @@ int newcat_set_freq(RIG *rig, vfo_t vfo, freq_t freq) && !rig->state.disable_yaesu_bandselect // remove the split check here -- hopefully works OK //&& !rig->state.cache.split + // some rigs can't do BS command on 60M && !(is_ftdx3000 && newcat_band_index(freq) == 2) + && !(is_ft2000 && newcat_band_index(freq) == 2) + && !(is_ftdx1200 && newcat_band_index(freq) == 2) && !is_ft891 // 891 does not remember bandwidth so don't do this && rig->caps->get_vfo != NULL && rig->caps->set_vfo != NULL) // gotta' have get_vfo too ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |