[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 86c4bfb4237337950e5e6
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-17 15:09:33
|
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 86c4bfb4237337950e5e66ac5efacd3d4d3ff050 (commit) from ebeb23e49d8096c117c54d846a2bb0709fa704fd (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 86c4bfb4237337950e5e66ac5efacd3d4d3ff050 Author: Michael Black W9MDB <mdb...@ya...> Date: Sun Jan 17 09:08:55 2021 -0600 Allow > 100MHz band select in newcat.c diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 063eeb63..18157f96 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -893,8 +893,11 @@ int newcat_set_freq(RIG *rig, vfo_t vfo, freq_t freq) if (err != RIG_OK) { return err; } - // we'll ignore UHF/VHF frequencies -- need to see the behavior - if (newcat_band_index(freqtmp) != newcat_band_index(freq) && freq < 100e6) + // Cross band should work too + // If the BS works on both VFOs then VFOB will have the band select answer + // so now change needed + // If the BS is by VFO then we'll need to do BS for the other VFO too + if (newcat_band_index(freqtmp) != newcat_band_index(freq)) { snprintf(priv->cmd_str, sizeof(priv->cmd_str), "BS%02d%c", ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |