Skip to content

Commit

Permalink
uvk5: Remove dummy valid_skips property
Browse files Browse the repository at this point in the history
This was done to avoid exposing anything in the skip column, but
actually just confuses users about why they can't select skip.

Fixes #11485
  • Loading branch information
kk7ds committed Sep 5, 2024
1 parent f3d2913 commit e2b63f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chirp/drivers/uvk5.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ def get_features(self):
rf.valid_power_levels = UVK5_POWER_LEVELS
rf.valid_special_chans = list(SPECIALS.keys())
rf.valid_duplexes = ["", "-", "+", "off"]
rf.valid_skips = []

# hack so we can input any frequency,
# the 0.1 and 0.01 steps don't work unfortunately
Expand All @@ -697,8 +698,6 @@ def get_features(self):
rf.valid_modes = ["FM", "NFM", "AM", "NAM"]
rf.valid_tmodes = ["", "Tone", "TSQL", "DTCS", "Cross"]

rf.valid_skips = [""]

# This radio supports memories 1-200, 201-214 are the VFO memories
rf.memory_bounds = (1, 200)

Expand Down

0 comments on commit e2b63f0

Please sign in to comment.