[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 1e1e2a5fbd05b7134e563
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-09-27 21:07:44
|
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 1e1e2a5fbd05b7134e563efc6654c2565a18eb00 (commit) from f0dc0f71d44bce269d88d8d259c4c1fb14223f2b (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 1e1e2a5fbd05b7134e563efc6654c2565a18eb00 Author: Michael Black W9MDB <mdb...@ya...> Date: Sun Sep 27 16:07:26 2020 -0500 Add debug to settings.c diff --git a/src/settings.c b/src/settings.c index 77aa4c18..4a81426a 100644 --- a/src/settings.c +++ b/src/settings.c @@ -534,6 +534,10 @@ int HAMLIB_API rig_set_func(RIG *rig, vfo_t vfo, setting_t func, int status) return caps->set_func(rig, vfo, func, status); } + else { + int targetable = caps->targetable_vfo & RIG_TARGETABLE_FUNC; + rig_debug(RIG_DEBUG_TRACE, "%s: targetable=%d, vfo=%s, currvfo=%s\n", __func__, targetable, rig_strvfo(vfo), rig_strvfo(rig->state.current_vfo)); + } if (!caps->set_vfo) { ----------------------------------------------------------------------- Summary of changes: src/settings.c | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |