[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. ce18ec7bf55941cc80abc
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-09-07 22:47:03
|
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 ce18ec7bf55941cc80abcacb0867e68a20772254 (commit) via 741499c2609ee67982e8d3afbcb62e9e41f3ceec (commit) from 6d74501d2cd5547db5c3bfbbd70317a75a284706 (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 ce18ec7bf55941cc80abcacb0867e68a20772254 Author: Michael Black W9MDB <mdb...@ya...> Date: Mon Sep 7 16:35:13 2020 -0500 Fix ft857 RFPOWER https://github.com/Hamlib/Hamlib/issues/368 diff --git a/rigs/yaesu/ft857.c b/rigs/yaesu/ft857.c index 3f71100d..836ddb2c 100644 --- a/rigs/yaesu/ft857.c +++ b/rigs/yaesu/ft857.c @@ -155,7 +155,7 @@ const struct rig_caps ft857_caps = RIG_MODEL(RIG_MODEL_FT857), .model_name = "FT-857", .mfg_name = "Yaesu", - .version = "20200628.0", + .version = "20200907.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -796,11 +796,11 @@ static int ft857_get_pometer_level(RIG *rig, value_t *val) { rig_debug(RIG_DEBUG_TRACE, "%s: bars=%d\n", __func__, p->tx_status & 0x0F); // does rig have 10 bars or 15? - val->i = (p->tx_status & 0x0F) / 10.0; + val->f = (p->tx_status & 0x0F) / 10.0; } else { - val->i = 0; // invalid value return + val->f = 0; // invalid value return } return RIG_OK; commit 741499c2609ee67982e8d3afbcb62e9e41f3ceec Author: Michael Black W9MDB <mdb...@ya...> Date: Mon Sep 7 09:59:32 2020 -0500 Add amplifier.swg to Makefile.am https://github.com/Hamlib/Hamlib/issues/367 diff --git a/bindings/Makefile.am b/bindings/Makefile.am index a3b590f6..b01407a8 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -9,13 +9,15 @@ AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/bindings $(PYTHON_CPPFLAGS) \ AM_CFLAGS = -fno-strict-aliasing AM_CXXFLAGS = -O2 -SWGFILES = hamlib.swg ignore.swg rig.swg rotator.swg +SWGFILES = hamlib.swg ignore.swg rig.swg rotator.swg amplifier.swg SWGDEP = \ $(top_srcdir)/include/hamlib/rig.h \ $(top_srcdir)/include/hamlib/riglist.h \ $(top_srcdir)/include/hamlib/rotator.h \ $(top_srcdir)/include/hamlib/rotlist.h \ + $(top_srcdir)/include/hamlib/amplifier.h \ + $(top_srcdir)/include/hamlib/amplist.h \ $(SWGFILES) EXTRA_DIST = $(SWGFILES) \ ----------------------------------------------------------------------- Summary of changes: bindings/Makefile.am | 4 +++- rigs/yaesu/ft857.c | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |