Skip to content

Commit

Permalink
Fix flex RFPOWER_METER_WATTS level
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Dec 28, 2020
1 parent c2feb98 commit decb02f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rigs/kenwood/flex6xxx.c
Expand Up @@ -848,7 +848,7 @@ int powersdr_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
case RIG_LEVEL_AF:
case RIG_LEVEL_RFPOWER_METER:
case RIG_LEVEL_RFPOWER_METER_WATTS:
n = sscanf(lvlbuf, "ZZRM%f", &val->f);
n = sscanf(lvlbuf, "ZZRM5%f", &val->f);

if (n != 1)
{
Expand Down Expand Up @@ -1038,7 +1038,7 @@ const struct rig_caps f6k_caps =
RIG_MODEL(RIG_MODEL_F6K),
.model_name = "6xxx",
.mfg_name = "FlexRadio",
.version = "20201217.0",
.version = "20201227.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
Expand Down Expand Up @@ -1162,7 +1162,7 @@ const struct rig_caps powersdr_caps =
RIG_MODEL(RIG_MODEL_POWERSDR),
.model_name = "PowerSDR/Thetis",
.mfg_name = "FlexRadio/ANAN",
.version = "2020161217",
.version = "20201227.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER,
Expand Down

0 comments on commit decb02f

Please sign in to comment.