Skip to content

Commit

Permalink
icv86: Fix power level ordering
Browse files Browse the repository at this point in the history
These have never been in the right order, so this corrects them to
match the radio.

Fixes #10727
  • Loading branch information
kk7ds committed Jul 17, 2023
1 parent 087e4e9 commit 3953172
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chirp/drivers/icv86.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@
DTCS_POLARITY = ["NN", "NR", "RN", "RR"]
TUNING_STEPS = [5., 10., 12.5, 15., 20., 25., 30., 50.]
POWER_LEVELS = [
chirp_common.PowerLevel("Extra High", watts=7.0),
chirp_common.PowerLevel("High", watts=5.5),
chirp_common.PowerLevel("Mid", watts=2.5),
chirp_common.PowerLevel("Low", watts=0.5),
chirp_common.PowerLevel("Mid", watts=2.5),
chirp_common.PowerLevel("Extra High", watts=7.0),
]


Expand Down

0 comments on commit 3953172

Please sign in to comment.