[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 7615f850124efb5e5436f
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-10 13:47:24
|
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 7615f850124efb5e5436fabd90d487b653a4b8d5 (commit) from 6fbf33e8edb4448e122df67d5379bf48be124dd1 (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 7615f850124efb5e5436fabd90d487b653a4b8d5 Author: Michael Black W9MDB <mdb...@ya...> Date: Sun Jan 10 07:46:07 2021 -0600 Fix hamlib_port structure alignment Should fix the shared libary problem with WSJTX getting incorrect vfo_list https://github.com/Hamlib/Hamlib/issues/500 diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index a5281350..5dfc56f8 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -1996,7 +1996,8 @@ typedef struct hamlib_port { } post_write_date; /*!< hamlib internal use */ int timeout; /*!< Timeout, in mS */ - int retry; /*!< Maximum number of retries, 0 to disable */ + short retry; /*!< Maximum number of retries, 0 to disable */ + short flushx; /*!< If true flush is done with read instead of TCFLUSH - MicroHam */ char pathname[FILPATHLEN]; /*!< Port pathname */ @@ -2034,7 +2035,6 @@ typedef struct hamlib_port { int value; /*!< Toggle PTT ON or OFF */ } gpio; /*!< GPIO attributes */ } parm; /*!< Port parameter union */ - int flushx; /*!< If true flush is done with read instead of TCFLUSH - MicroHam */ } hamlib_port_t; //! @endcond ----------------------------------------------------------------------- Summary of changes: include/hamlib/rig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |