[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 7180eb7da6297eb436a43
Library to control radio transceivers and receivers
Brought to you by:
n0nb
|
From: n0nb <n0...@us...> - 2025-09-01 22:01:06
|
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 7180eb7da6297eb436a43c309151170580cc06d9 (commit)
via 80281719f4aaee97e2fbcbfccc52c428a807005d (commit)
from 4c520571dfb13cc04c42120e751d09af6f2ef0e6 (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 7180eb7da6297eb436a43c309151170580cc06d9
Merge: 4c520571d 80281719f
Author: Nate Bargmann <n0...@n0...>
Date: Mon Sep 1 13:20:11 2025 -0500
Merge GitHub PR #1879
commit 80281719f4aaee97e2fbcbfccc52c428a807005d
Author: Daniele Forsi IU5HKX <iu...@gm...>
Date: Sun Aug 31 09:51:11 2025 +0200
Fix twiddle_timeout
Fixes the definition of config parameter "twiddle_timeout" and
the description of rig_set_twiddle().
diff --git a/src/conf.c b/src/conf.c
index ef845dcde..d9cb1f888 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -175,7 +175,7 @@ static const struct confparams frontend_cfg_params[] =
{
TOK_TWIDDLE_TIMEOUT, "twiddle_timeout", "Timeout(secs) to resume VFO polling when twiddling VFO",
"For satellite ops when VFOB is twiddled will pause VFOB commands until timeout",
- "Unset", RIG_CONF_COMBO, { .c = {{ "Unset", "ON", "OFF", NULL }} }
+ "0", RIG_CONF_NUMERIC, { .n = { 0, 100, 1 } }
},
{
TOK_TWIDDLE_RIT, "twiddle_rit", "RIT twiddle",
diff --git a/src/rig.c b/src/rig.c
index 4807011db..e7cea674c 100644
--- a/src/rig.c
+++ b/src/rig.c
@@ -1918,7 +1918,6 @@ int HAMLIB_API rig_cleanup(RIG *rig)
* \param seconds The timeout to set to
*
* timeout seconds to stop rigctld when VFO is manually changed
- * turns on/off the radio.
*
* \return RIG_OK if the operation has been successful, otherwise
* a negative value if an error occurred (in which case, cause is
-----------------------------------------------------------------------
Summary of changes:
src/conf.c | 2 +-
src/rig.c | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
hooks/post-receive
--
Hamlib -- Ham radio control libraries
|