[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. d58f6a1d3c7c52c5d846d
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-22 21:10:07
|
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 d58f6a1d3c7c52c5d846d237a36eb1429d1e37d6 (commit) via 7181589c4caa5111a90f14807b7999161cea0ad4 (commit) from 9d58b30489b090b994017691454d8436bb04b49c (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 d58f6a1d3c7c52c5d846d237a36eb1429d1e37d6 Merge: 7181589c 9d58b304 Author: Michael Black W9MDB <mdb...@ya...> Date: Fri Jan 22 15:09:46 2021 -0600 Merge branch 'master' of http://github.com/Hamlib/Hamlib commit 7181589c4caa5111a90f14807b7999161cea0ad4 Author: Michael Black W9MDB <mdb...@ya...> Date: Fri Jan 22 14:27:29 2021 -0600 Change ftdx3000/5000 to reject setting freq while transmitting and cover VFOA and VFOB More rigs will probably be added to this list https://github.com/Hamlib/Hamlib/issues/513 diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 423a6154..e8e08358 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -779,9 +779,9 @@ int newcat_set_freq(RIG *rig, vfo_t vfo, freq_t freq) { // should be true whether we're on VFOA or VFOB but only restricting VFOB right now // we return RIG_OK as we dont' want - if (is_ftdx3000 && target_vfo == 'B') { return RIG_OK; } + if (is_ftdx3000) { return RIG_ENTARGET; } - if (is_ftdx5000 && target_vfo == 'B') { return RIG_OK; } + if (is_ftdx5000) { return RIG_ENTARGET; } } if (RIG_MODEL_FT450 == caps->rig_model) ----------------------------------------------------------------------- Summary of changes: hooks/post-receive -- Hamlib -- Ham radio control libraries |