[Hamlib-commits] Hamlib -- Ham radio control libraries branch Hamlib-4.6.3 updated. 4.6.3-10-g867fc
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-06-23 13:20:48
|
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, Hamlib-4.6.3 has been updated via 867fc5886a5a9f0bee66be4fd2e5821a9cf0b00d (commit) via a57e5583fd7903c100b8cc01c286b2a9da9096c6 (commit) from b34695aab8dc7865620676a28ee7bbe7dc67fd3e (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 867fc5886a5a9f0bee66be4fd2e5821a9cf0b00d Author: Nate Bargmann <n0...@n0...> Date: Mon Jun 23 08:18:46 2025 -0500 Update NEWS for R75 powerstat fix diff --git a/NEWS b/NEWS index 5e2a8ac30..8f43ad6d2 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,7 @@ Version 4.6.4 * Fixed jrc_set_chan. (TNX Mark Fine). * Fix memory leak in rigctl_parse.c and use unique separator character for each rigctld connection--closes GitHub #1748. (TNX George Baltz). + * Fix powerstat check for Icom R75 which rejects the command. (TNX Mark Fine). Version 4.6.3 * 2025-06-10 commit a57e5583fd7903c100b8cc01c286b2a9da9096c6 Author: markjfine <mar...@fi...> Date: Mon Jun 23 01:25:09 2025 -0400 Correct powerstat check The R75 for some reason rejects the powerstat query and returns an error. Commented out .get_powerstat to correct that. Applications should initially assume it's on, then internally track power status, since you can still turn it off. (cherry picked from commit dc12b01aed6b4449e42ff57e71f3687b1b837a20) diff --git a/rigs/icom/icr75.c b/rigs/icom/icr75.c index 1644ecdc5..5b423a141 100644 --- a/rigs/icom/icr75.c +++ b/rigs/icom/icr75.c @@ -245,7 +245,7 @@ struct rig_caps icr75_caps = .scan = icom_scan, .set_ts = icom_set_ts, .set_powerstat = icom_set_powerstat, - .get_powerstat = icom_get_powerstat, + //.get_powerstat = icom_get_powerstat, .set_channel = icr75_set_channel, .get_channel = icr75_get_channel, ----------------------------------------------------------------------- Summary of changes: NEWS | 1 + rigs/icom/icr75.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |