Skip to content

Commit

Permalink
Remove UV-K5 development version string
Browse files Browse the repository at this point in the history
This was for use during development but is removed for final inclusion
in CHIRP itself.

Related to #10478
  • Loading branch information
kk7ds committed Jun 27, 2023
1 parent 0344c83 commit c60ece1
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions chirp/drivers/uvk5.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@
# might be useful for someone debugging some obscure memory issue
DEBUG_SHOW_MEMORY_ACTIONS = False

# TODO: remove the driver version when it's in mainline chirp
DRIVER_VERSION = "Quansheng UV-K5 driver v20230626 (c) Jacek Lipkowski SQ5BPF"

MEM_FORMAT = """
#seekto 0x0000;
struct {
Expand Down Expand Up @@ -1862,13 +1859,6 @@ def get_settings(self):
rs = RadioSetting("fw_ver", "Firmware Version", val)
roinfo.append(rs)

# TODO: remove showing the driver version when it's in mainline chirp
# Driver version
val = RadioSettingValueString(0, 128, DRIVER_VERSION)
val.set_mutable(False)
rs = RadioSetting("driver_ver", "Driver version", val)
roinfo.append(rs)

# No limits version for hacked firmware
val = RadioSettingValueBoolean(self._expanded_limits)
rs = RadioSetting("nolimits", "Limits disabled for modified firmware",
Expand Down

0 comments on commit c60ece1

Please sign in to comment.