[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 49e59083f02d0a307aa1f
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-08-27 03:50:19
|
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 49e59083f02d0a307aa1fad5ca69ed392172f548 (commit) from aa9b9196b4dc231a6979fa9ec15b3798931b9031 (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 49e59083f02d0a307aa1fad5ca69ed392172f548 Author: Mike Black W9MDB <mdb...@ya...> Date: Thu Aug 26 22:49:41 2021 -0500 Change kenwood set_split to check split instead of priv->split https://github.com/Hamlib/Hamlib/issues/746 diff --git a/rigs/kenwood/kenwood.c b/rigs/kenwood/kenwood.c index 62632779..46774940 100644 --- a/rigs/kenwood/kenwood.c +++ b/rigs/kenwood/kenwood.c @@ -1261,7 +1261,7 @@ int kenwood_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo) // FR can turn off split on some Kenwood rigs // So we'll turn it back on just in case - if (priv->split && vfo_function=='0') { strcat(cmdbuf, ";FT1"); } + if (split && vfo_function=='0') { strcat(cmdbuf, ";FT1"); } retval = kenwood_transaction(rig, cmdbuf, NULL, 0); ----------------------------------------------------------------------- Summary of changes: rigs/kenwood/kenwood.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |