[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. v4.0rc1-68-g494a875d
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-08-04 12: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 494a875d79c3b683d8a062b1efe45442d48aa33a (commit) from 6fbb039a69523ae5c181f64cbe6f37a6322b179c (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 494a875d79c3b683d8a062b1efe45442d48aa33a Author: Michael Black W9MDB <mdb...@ya...> Date: Tue Aug 4 07:52:30 2020 -0500 Add FT991 to RFPOWER scale 100 in newcat.c https://github.com/Hamlib/Hamlib/issues/354 diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index fec6f63a..3b2b048e 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -2552,6 +2552,7 @@ int newcat_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val) scale = newcat_is_rig(rig, RIG_MODEL_FT891) ? 100. : scale ; scale = newcat_is_rig(rig, RIG_MODEL_FT950) ? 100. : scale ; scale = newcat_is_rig(rig, RIG_MODEL_FT1200) ? 100. : scale ; + scale = newcat_is_rig(rig, RIG_MODEL_FT991) ? 100. : scale ; fpf = newcat_scale_float(scale, val.f); snprintf(priv->cmd_str, sizeof(priv->cmd_str), "PC%03d%c", fpf, cat_term); break; diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index eaf80169..0173388f 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20200729" +#define NEWCAT_VER "20200804" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129 diff --git a/scripts/README.build-Windows b/scripts/README.build-Windows index cbeffcd3..9385a564 100644 --- a/scripts/README.build-Windows +++ b/scripts/README.build-Windows @@ -29,9 +29,9 @@ to be built. Download the latest libusb-1.0 from: https://sourceforge.net/projects/libusb/files/libusb-1.0/ -and unzip the archive in ~/builds +:nd unzip the archive in ~/builds -Any version of libusb from 1.0.20 is known to work. +Libusb 1.0.20 is known to work. Presumably any 1.X.X version should work. Several variables may need to be set differently at the top of the script file depending on your system. ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 1 + rigs/yaesu/newcat.h | 2 +- scripts/README.build-Windows | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |