[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 9aed2637a63abb8b175a2
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-04-21 22:28:27
|
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 9aed2637a63abb8b175a21b06942cca5308e7527 (commit) via 4f3f308d7af83316eb8e3aebe48abb960f9e9e11 (commit) via 1f707ab31ef5ceebd552e1292d541fd9baed55a1 (commit) via 8150583541e4230c6b76dc38209b58694f6e6f99 (commit) via ba011462efc37b12d18d5bf59d0e0a7b117fceeb (commit) from 8f641b2b6a4fabe4d4f3062f4fa591ba2e7a672f (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 9aed2637a63abb8b175a21b06942cca5308e7527 Merge: 8f641b2b6 4f3f308d7 Author: Nate Bargmann <n0...@n0...> Date: Mon Apr 21 17:27:29 2025 -0500 Merge pull request #1708 from GeoBaltz/fix27 Minor fixes/cleanups for 4.6.3 commit 4f3f308d7af83316eb8e3aebe48abb960f9e9e11 Author: George Baltz N3GB <Geo...@gm...> Date: Mon Apr 21 13:32:42 2025 -0400 Enable rig_vfo_op for TS-890S diff --git a/rigs/kenwood/ts890s.c b/rigs/kenwood/ts890s.c index c5906f6dc..32d8c4533 100644 --- a/rigs/kenwood/ts890s.c +++ b/rigs/kenwood/ts890s.c @@ -669,6 +669,7 @@ struct rig_caps ts890s_caps = .get_mode = kenwood_get_mode, .set_vfo = kenwood_set_vfo, .get_vfo = kenwood_get_vfo_if, + .vfo_op = kenwood_vfo_op, .set_split_vfo = kenwood_set_split_vfo, .get_split_vfo = ts890s_get_split_vfo, .set_ctcss_tone = kenwood_set_ctcss_tone_tn, commit 1f707ab31ef5ceebd552e1292d541fd9baed55a1 Author: George Baltz N3GB <Geo...@gm...> Date: Wed Apr 16 03:35:48 2025 -0400 Make local functions static. diff --git a/tests/rigmem.c b/tests/rigmem.c index bf73e7102..6c8d9bac2 100644 --- a/tests/rigmem.c +++ b/tests/rigmem.c @@ -55,7 +55,7 @@ extern int csv_parm_load(RIG *rig, const char *infilename); */ void usage(); void version(); -int set_conf(RIG *rig, char *conf_parms); +static int set_conf(RIG *rig, char *conf_parms); int clear_chans(RIG *rig, const char *infilename); @@ -442,7 +442,7 @@ void usage() } -int set_conf(RIG *rig, char *conf_parms) +static int set_conf(RIG *rig, char *conf_parms) { char *p, *n; diff --git a/tests/rigswr.c b/tests/rigswr.c index 0caf9bb22..2754ec214 100644 --- a/tests/rigswr.c +++ b/tests/rigswr.c @@ -374,7 +374,7 @@ void usage() } -int set_conf(RIG *rig, char *conf_parms) +static int set_conf(RIG *rig, char *conf_parms) { char *p, *n; commit 8150583541e4230c6b76dc38209b58694f6e6f99 Author: George Baltz N3GB <Geo...@gm...> Date: Wed Apr 16 03:33:51 2025 -0400 Drop redundant token lookups. diff --git a/tests/ampctl.c b/tests/ampctl.c index 6a0cf29b3..04ed2cef5 100644 --- a/tests/ampctl.c +++ b/tests/ampctl.c @@ -315,7 +315,7 @@ int main(int argc, char *argv[]) continue; } - retcode = amp_set_conf(my_amp, amp_token_lookup(my_amp, mytoken), myvalue); + retcode = amp_set_conf(my_amp, lookup, myvalue); if (retcode != RIG_OK) { diff --git a/tests/ampctld.c b/tests/ampctld.c index 079eb068b..fda0bfa09 100644 --- a/tests/ampctld.c +++ b/tests/ampctld.c @@ -340,7 +340,7 @@ int main(int argc, char *argv[]) continue; } - retcode = amp_set_conf(my_amp, amp_token_lookup(my_amp, mytoken), myvalue); + retcode = amp_set_conf(my_amp, lookup, myvalue); if (retcode != RIG_OK) { diff --git a/tests/rigctl.c b/tests/rigctl.c index 35d1241b3..064e54f14 100644 --- a/tests/rigctl.c +++ b/tests/rigctl.c @@ -585,7 +585,7 @@ int main(int argc, char *argv[]) continue; } - retcode = rig_set_conf(my_rig, rig_token_lookup(my_rig, mytoken), myvalue); + retcode = rig_set_conf(my_rig, lookup, myvalue); if (retcode != RIG_OK) { diff --git a/tests/rigctld.c b/tests/rigctld.c index 8ee613cf1..f14effe7b 100644 --- a/tests/rigctld.c +++ b/tests/rigctld.c @@ -681,7 +681,7 @@ int main(int argc, char *argv[]) continue; } - retcode = rig_set_conf(my_rig, rig_token_lookup(my_rig, mytoken), myvalue); + retcode = rig_set_conf(my_rig, lookup, myvalue); if (retcode != RIG_OK) { diff --git a/tests/rotctl.c b/tests/rotctl.c index 873c9b96e..9b713d3ad 100644 --- a/tests/rotctl.c +++ b/tests/rotctl.c @@ -355,7 +355,7 @@ int main(int argc, char *argv[]) continue; } - retcode = rot_set_conf(my_rot, rot_token_lookup(my_rot, mytoken), myvalue); + retcode = rot_set_conf(my_rot, lookup, myvalue); if (retcode != RIG_OK) { diff --git a/tests/rotctld.c b/tests/rotctld.c index e68227acf..aa61d71a4 100644 --- a/tests/rotctld.c +++ b/tests/rotctld.c @@ -363,7 +363,7 @@ int main(int argc, char *argv[]) continue; } - retcode = rot_set_conf(my_rot, rot_token_lookup(my_rot, mytoken), myvalue); + retcode = rot_set_conf(my_rot, lookup, myvalue); if (retcode != RIG_OK) { commit ba011462efc37b12d18d5bf59d0e0a7b117fceeb Author: George Baltz N3GB <Geo...@gm...> Date: Wed Apr 16 03:31:14 2025 -0400 Add dates for recent releases diff --git a/NEWS b/NEWS index 9ab81f35b..7da905aae 100644 --- a/NEWS +++ b/NEWS @@ -17,12 +17,14 @@ Version 4.6.3 * Add rig CODAN 2110 Version 4.6.2 + * 2025-02-09 * Add missing levels for IC746/PRO RIG_LEVEL_RFPOWER_METER,RIG_LEVEL_RFPOWER_METER_WATTS,RIG_LEVEL_SWR,RIG_LEVEL_ALC * Fix IC905 for gpredict * Fix potential segfault on QMX * Fix pmr171 Version 4.6.1 + * 2025-01-21 * Fix C++ builds failing on rig_list_foreach function * Fix IC9100 rigctld startup to end up on VFOA * Fix grig build by removing sys/socket.h -- apparently not needed @@ -34,6 +36,7 @@ Version 4.6.1 * Fix SDRConsole by removing lots of things it does not have Version 4.6 + * 2024-12-24 * send_raw can now take hex digits as colon-separated -- e.g. send_raw icom xfe:xfe:x94:xe0:03:xfd * Add IC7760 * IC7300 Mode filter can now be set by # (i.e. 1,2,3) ----------------------------------------------------------------------- Summary of changes: NEWS | 3 +++ rigs/kenwood/ts890s.c | 1 + tests/ampctl.c | 2 +- tests/ampctld.c | 2 +- tests/rigctl.c | 2 +- tests/rigctld.c | 2 +- tests/rigmem.c | 4 ++-- tests/rigswr.c | 2 +- tests/rotctl.c | 2 +- tests/rotctld.c | 2 +- 10 files changed, 13 insertions(+), 9 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |