From c933692bbf0a2aa214884df8c0cd5dec3a650dfe Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Sun, 16 Jul 2023 19:10:04 -0700 Subject: [PATCH] icv86: Fix power level ordering These have never been in the right order, so this corrects them to match the radio. Fixes #10727 --- chirp/drivers/icv86.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chirp/drivers/icv86.py b/chirp/drivers/icv86.py index ed3618476..387546ce4 100644 --- a/chirp/drivers/icv86.py +++ b/chirp/drivers/icv86.py @@ -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), ]