[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 62bcb66865a863c77967a
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Nate B. <n0...@us...> - 2021-02-21 19:09:30
|
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 62bcb66865a863c77967a0b4142bf668ac064c44 (commit) via 529685ab6993951be1ec7672b90b087bf7f603bc (commit) via b0fc76ce445857d9e53eaefad1efc23627c94966 (commit) from 2e321c5191382c0f359eb85e58693e461a7f6549 (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 62bcb66865a863c77967a0b4142bf668ac064c44 Author: Michael Black W9MDB <mdb...@ya...> Date: Sun Feb 21 12:35:36 2021 -0600 Fix RFPOWER command for TS480 https://github.com/Hamlib/Hamlib/issues/553 diff --git a/rigs/kenwood/kenwood.c b/rigs/kenwood/kenwood.c index e6f8bef0..cae882f9 100644 --- a/rigs/kenwood/kenwood.c +++ b/rigs/kenwood/kenwood.c @@ -2339,7 +2339,7 @@ static int kenwood_get_power_minmax(RIG *rig, int *power_now, int *power_min, RETURNFUNC( -RIG_EPROTO); } - if (RIG_IS_TS890S) + if (RIG_IS_TS890S || RIG_IS_TS480) { n = sscanf(levelbuf, "PC%d;", power_now); diff --git a/rigs/kenwood/kenwood.h b/rigs/kenwood/kenwood.h index 83553879..66c735d2 100644 --- a/rigs/kenwood/kenwood.h +++ b/rigs/kenwood/kenwood.h @@ -27,7 +27,7 @@ #include <string.h> #include "token.h" -#define BACKEND_VER "20210209" +#define BACKEND_VER "20210221" #define EOM_KEN ';' #define EOM_TH '\r' commit 529685ab6993951be1ec7672b90b087bf7f603bc Author: Michael Black W9MDB <mdb...@ya...> Date: Sat Feb 20 10:24:08 2021 -0600 Disable rigctld error check with rig_close/rig_open -- more investigation needed https://github.com/Hamlib/Hamlib/issues/556 diff --git a/tests/rigctld.c b/tests/rigctld.c index e65efc97..73dec16c 100644 --- a/tests/rigctld.c +++ b/tests/rigctld.c @@ -1092,6 +1092,7 @@ void *handle_socket(void *arg) RETURNFUNC(NULL); } +#if 0 if (ferror(fsockin) || ferror(fsockout) || retcode == 2) { if (ferror(fsockout)) fsockout = get_fsockout(handle_data_arg); @@ -1112,6 +1113,7 @@ void *handle_socket(void *arg) } while (retry-- > 0 && retcode != RIG_OK); } } +#endif } while (retcode == 0 || retcode == 2 || retcode == -RIG_ENAVAIL); commit b0fc76ce445857d9e53eaefad1efc23627c94966 Author: Michael Black W9MDB <mdb...@ya...> Date: Sat Feb 20 08:13:08 2021 -0600 Update NEWS diff --git a/NEWS b/NEWS index 85782a0b..7c5dc423 100644 --- a/NEWS +++ b/NEWS @@ -10,8 +10,8 @@ Version 4.3 Add twiddle_timeout and twiddle_rit --set-conf options rigctld --set-conf=twiddle_timeout=5,twiddle_rit=1 This will set the twiddle timeout to 5 seconds and turn on twiddle_rit - For twiddle timeout VFOB will not be poller for 5 seconds after VFO twiddling is detected - rigctld --twiddle is deprecated and will be removed in 5.0 + For twiddle timeout VFOB will not be polled for 5 seconds after VFO twiddling is detected + rigctld --twiddle is deprecated and will be removed in 5.0 along with get_twiddle and set_twiddle Version 4.2 2021-??-?? ----------------------------------------------------------------------- Summary of changes: NEWS | 4 ++-- rigs/kenwood/kenwood.c | 2 +- rigs/kenwood/kenwood.h | 2 +- tests/rigctld.c | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |