[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 49af447f27ffd1c481e72
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-04-20 23:18:20
|
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 49af447f27ffd1c481e72293d04e9fa1dd56de53 (commit) via a3da9bbe4260d6dcd52ccb342cec056b9ca7e584 (commit) via 21bf64b7ba3296f8b00512f0f6604ee1f0c45736 (commit) via 5b85a716fc3e1c38aeeb496ee0b27b6a2ed97cfd (commit) via 864c60b86d2e032470af0b16feec90e91962e00d (commit) from 071416d0d40c42f294064ccd7a3682bdd5a82cbc (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 49af447f27ffd1c481e72293d04e9fa1dd56de53 Merge: 071416d0d a3da9bbe4 Author: Nate Bargmann <n0...@n0...> Date: Sun Apr 20 18:14:58 2025 -0500 Merge pull request #1703 from CallumMcEwen/master Updates to codan_set_ptt command and README.md commit a3da9bbe4260d6dcd52ccb342cec056b9ca7e584 Author: Callum McEwen (VK5MCA) <Cal...@us...> Date: Mon Apr 21 04:25:40 2025 +0930 Update comments on codan_set_ptt diff --git a/rigs/codan/codan.c b/rigs/codan/codan.c index aad561ac6..2c275cfdc 100644 --- a/rigs/codan/codan.c +++ b/rigs/codan/codan.c @@ -473,7 +473,6 @@ int codan_get_ptt_2110(RIG *rig, vfo_t vfo, ptt_t *ptt) * VK5MCA * Changing PTT activation from 'connect tcvr rf ptt %s' to CICS command 'ptt %s voice'. * This sets fast ALC and allows audio to pass to the transmitter via the GPIO port. - * Using the 'rf ptt' command does allow audio to pass through the GPIO port of the Envoy RF Unit or Console. */ int codan_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt) { commit 21bf64b7ba3296f8b00512f0f6604ee1f0c45736 Author: Callum McEwen (VK5MCA) <Cal...@us...> Date: Mon Apr 21 04:19:49 2025 +0930 Add V3.51 firmware comment diff --git a/rigs/codan/README.codan b/rigs/codan/README.codan index 3f6ecaaa1..d98dec0ab 100644 --- a/rigs/codan/README.codan +++ b/rigs/codan/README.codan @@ -13,4 +13,4 @@ the device which is addressed via the GP port. As of SDR firmware V3.51 for Envoy and Sentry radios, the Amatuer option allows for Freetune Tx on ham bands only. Freetune Tx is no longer required for this rig file to work. -$${\color{lightblue}VK5MCA}$$ +VK5MCA commit 5b85a716fc3e1c38aeeb496ee0b27b6a2ed97cfd Author: Callum McEwen (VK5MCA) <Cal...@us...> Date: Mon Apr 21 04:18:58 2025 +0930 Update README.codan diff --git a/rigs/codan/README.codan b/rigs/codan/README.codan index 0e57bd27c..3f6ecaaa1 100644 --- a/rigs/codan/README.codan +++ b/rigs/codan/README.codan @@ -9,3 +9,8 @@ programming. This is most often the GP (general purpose) port which is a 15-pin D-Sub connector on a flying lead on the back of the radio. (NGT and Envoy models). Programming must be set to select "CICS" as the device which is addressed via the GP port. + +As of SDR firmware V3.51 for Envoy and Sentry radios, the Amatuer option +allows for Freetune Tx on ham bands only. Freetune Tx is no longer required +for this rig file to work. +$${\color{lightblue}VK5MCA}$$ commit 864c60b86d2e032470af0b16feec90e91962e00d Author: Callum McEwen (VK5MCA) <Cal...@us...> Date: Tue Apr 1 20:30:55 2025 +1030 Update codan.c Updated ptt command to CICS diff --git a/rigs/codan/codan.c b/rigs/codan/codan.c index 996d2c595..aad561ac6 100644 --- a/rigs/codan/codan.c +++ b/rigs/codan/codan.c @@ -469,6 +469,11 @@ int codan_get_ptt_2110(RIG *rig, vfo_t vfo, ptt_t *ptt) /* * codan_set_ptt * Assumes rig!=NULL + * + * VK5MCA + * Changing PTT activation from 'connect tcvr rf ptt %s' to CICS command 'ptt %s voice'. + * This sets fast ALC and allows audio to pass to the transmitter via the GPIO port. + * Using the 'rf ptt' command does allow audio to pass through the GPIO port of the Envoy RF Unit or Console. */ int codan_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt) { @@ -478,7 +483,7 @@ int codan_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt) rig_debug(RIG_DEBUG_VERBOSE, "%s: ptt=%d\n", __func__, ptt); - SNPRINTF(cmd_buf, sizeof(cmd_buf), "connect tcvr rf ptt %s\rptt", + SNPRINTF(cmd_buf, sizeof(cmd_buf), "ptt %s voice\rptt", ptt == 0 ? "off" : "on"); response = NULL; retval = codan_transaction(rig, cmd_buf, 0, &response); ----------------------------------------------------------------------- Summary of changes: rigs/codan/README.codan | 5 +++++ rigs/codan/codan.c | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |