[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 748b45b91f8216744d9bd
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2023-04-05 21:53:38
|
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 748b45b91f8216744d9bd38baf882a592c1f804b (commit) via 22970f16de01a30792ecd3041e55ce34bc164d5d (commit) from 99170c10259dbe0b4903ce6ce3d47bac623769de (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 748b45b91f8216744d9bd38baf882a592c1f804b Author: Nate Bargmann <n0...@n0...> Date: Wed Apr 5 16:52:56 2023 -0500 Update recent dates in NEWS diff --git a/NEWS b/NEWS index d407df76..1d1c95e3 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,8 @@ Hamlib -- History of visible changes. Copyright (C) 2000-2003 Frank Singleton -Copyright (C) 2000-2021 Stephane Fillod, and others -Copyright (C) 2000-2021 Michael Black W9MDB, and others +Copyright (C) 2000-2023 Stephane Fillod, and others +Copyright (C) 2000-2023 Michael Black W9MDB, and others Please send Hamlib bug reports to ham...@li... @@ -31,6 +31,7 @@ Version 4.6 * Fix FTDX3000 rig split Version 4.5.5 + * 2023-04-05 * Add park to rotorez.c * Fix rig power on/off from rigctl cmd line and rigctld * Enable async mode by default to prevent WSJT-X crash on IC9700 with transceive on @@ -66,7 +67,7 @@ Version 4.5.5 * Fix power on/off/on for Icom rigs with rigctld power_on=0 Version 4.5.4 - * 2023-XX-XX + * 2023-01-10 * Fix CM108 ptt setting for non-default usage * Fix power on/off for Icom rigs with rigctld power_on=0 * Fix get_powerstat status return for non-PS kenwood rigs commit 22970f16de01a30792ecd3041e55ce34bc164d5d Author: Mike Black W9MDB <mdb...@ya...> Date: Wed Apr 5 10:30:20 2023 -0500 Fix Serial speed information in dumpcaps diff --git a/tests/dumpcaps.c b/tests/dumpcaps.c index 32d26514..ae687443 100644 --- a/tests/dumpcaps.c +++ b/tests/dumpcaps.c @@ -191,7 +191,7 @@ int dumpcaps(RIG *rig, FILE *fout) case RIG_PORT_SERIAL: fprintf(fout, "RS-232\n"); fprintf(fout, - "Serial speed: %d..%d bauds, %d%c%d %s\n", + "Serial speed: %d..%d baud, %d%c%d, ctrl=%s\n", caps->serial_rate_min, caps->serial_rate_max, caps->serial_data_bits, @@ -200,7 +200,7 @@ int dumpcaps(RIG *rig, FILE *fout) caps->serial_parity == RIG_PARITY_EVEN ? 'E' : caps->serial_parity == RIG_PARITY_MARK ? 'M' : 'S', caps->serial_stop_bits, - caps->serial_handshake == RIG_HANDSHAKE_NONE ? "" : + caps->serial_handshake == RIG_HANDSHAKE_NONE ? "NONE" : (caps->serial_handshake == RIG_HANDSHAKE_XONXOFF ? "XONXOFF" : "CTS/RTS") ); break; diff --git a/tests/dumpcaps_amp.c b/tests/dumpcaps_amp.c index 8a45e998..39d16f9b 100644 --- a/tests/dumpcaps_amp.c +++ b/tests/dumpcaps_amp.c @@ -70,7 +70,7 @@ int dumpcaps_amp(AMP *amp, FILE *fout) case RIG_PORT_SERIAL: fprintf(fout, "RS-232\n"); fprintf(fout, - "Serial speed:\t\t%d..%d bauds, %d%c%d%s\n", + "Serial speed:\t\t%d..%d baud, %d%c%d, ctrl=%s\n", caps->serial_rate_min, caps->serial_rate_max, caps->serial_data_bits, @@ -79,8 +79,8 @@ int dumpcaps_amp(AMP *amp, FILE *fout) caps->serial_parity == RIG_PARITY_EVEN ? 'E' : caps->serial_parity == RIG_PARITY_MARK ? 'M' : 'S', caps->serial_stop_bits, - caps->serial_handshake == RIG_HANDSHAKE_NONE ? "" : - (caps->serial_handshake == RIG_HANDSHAKE_XONXOFF ? " XONXOFF" : " CTS/RTS") + caps->serial_handshake == RIG_HANDSHAKE_NONE ? "NONE" : + (caps->serial_handshake == RIG_HANDSHAKE_XONXOFF ? "XONXOFF" : "CTS/RTS") ); break; diff --git a/tests/dumpcaps_rot.c b/tests/dumpcaps_rot.c index 5868d3c5..8f4e0db9 100644 --- a/tests/dumpcaps_rot.c +++ b/tests/dumpcaps_rot.c @@ -88,7 +88,7 @@ int dumpcaps_rot(ROT *rot, FILE *fout) case RIG_PORT_SERIAL: fprintf(fout, "RS-232\n"); fprintf(fout, - "Serial speed:\t\t%d..%d bauds, %d%c%d%s\n", + "Serial speed:\t\t%d..%d bauds, %d%c%d, ctrl=%s\n", caps->serial_rate_min, caps->serial_rate_max, caps->serial_data_bits, @@ -97,8 +97,8 @@ int dumpcaps_rot(ROT *rot, FILE *fout) caps->serial_parity == RIG_PARITY_EVEN ? 'E' : caps->serial_parity == RIG_PARITY_MARK ? 'M' : 'S', caps->serial_stop_bits, - caps->serial_handshake == RIG_HANDSHAKE_NONE ? "" : - (caps->serial_handshake == RIG_HANDSHAKE_XONXOFF ? " XONXOFF" : " CTS/RTS") + caps->serial_handshake == RIG_HANDSHAKE_NONE ? "NONE" : + (caps->serial_handshake == RIG_HANDSHAKE_XONXOFF ? "XONXOFF" : "CTS/RTS") ); break; ----------------------------------------------------------------------- Summary of changes: NEWS | 7 ++++--- tests/dumpcaps.c | 4 ++-- tests/dumpcaps_amp.c | 6 +++--- tests/dumpcaps_rot.c | 6 +++--- 4 files changed, 12 insertions(+), 11 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |