Skip to content

Commit

Permalink
Fix PowerSDR get_level AF in flex6xxx.c
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Feb 25, 2021
1 parent b67643b commit 7f6ce7a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rigs/kenwood/flex6xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,10 @@ int powersdr_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)


case RIG_LEVEL_AF:
n = sscanf(lvlbuf,"ZZAG%f", &val->f);
val->f /= 100.0;
break;

case RIG_LEVEL_RFPOWER_METER:
case RIG_LEVEL_RFPOWER_METER_WATTS:
n = sscanf(lvlbuf, "ZZRM5%f", &val->f);
Expand Down

0 comments on commit 7f6ce7a

Please sign in to comment.