[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 77bd4e2322be269a03ada
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-12-31 13:43:56
|
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 77bd4e2322be269a03adad9a4513d61bcb14874a (commit) from 2b448d28154491a628ca607c6c1c0aed73382b36 (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 77bd4e2322be269a03adad9a4513d61bcb14874a Author: Michael Black W9MDB <mdb...@ya...> Date: Thu Dec 31 07:43:13 2020 -0600 Fix RIG_LEVEL_STRENGTH break in flrig.c diff --git a/rigs/dummy/flrig.c b/rigs/dummy/flrig.c index 4f7f0239..3224e59a 100644 --- a/rigs/dummy/flrig.c +++ b/rigs/dummy/flrig.c @@ -1969,6 +1969,7 @@ static int flrig_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val) case RIG_LEVEL_STRENGTH: val->i = atoi(value); rig_debug(RIG_DEBUG_TRACE, "%s: val.i='%s'(%d)\n", __func__, value, val->i); + break; case RIG_LEVEL_RFPOWER_METER: val->f = atof(value) / 100.0 * priv->powermeter_scale; diff --git a/rigs/dummy/flrig.h b/rigs/dummy/flrig.h index 0f5a7fa4..dd0ecc19 100644 --- a/rigs/dummy/flrig.h +++ b/rigs/dummy/flrig.h @@ -28,7 +28,7 @@ #include <sys/time.h> #endif -#define BACKEND_VER "20201227" +#define BACKEND_VER "20201231" #define EOM "\r" #define TRUE 1 ----------------------------------------------------------------------- Summary of changes: rigs/dummy/flrig.c | 1 + rigs/dummy/flrig.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |