From c20125a264443133205aee0641647d8d01b0c50a Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Sat, 23 Jan 2021 18:01:26 -0600 Subject: [PATCH] In newcat.c prevent FT-2000 and FTDX1200 from sending BS commands on 60M but let them send 60M FA/FB commands --- rigs/yaesu/newcat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 15079b6c4..3d9c04ea5 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