Skip to content

Commit

Permalink
uvk5: Bless 3.00.x firmware
Browse files Browse the repository at this point in the history
As reported in #11495, this firmware version was found in the field to
be working.

Fixes #11495
  • Loading branch information
kk7ds committed Aug 26, 2024
1 parent 9ffd59d commit 8c8dd24
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chirp/drivers/uvk5.py
Original file line number Diff line number Diff line change
Expand Up @@ -2043,8 +2043,9 @@ def set_memory(self, mem):
class UVK5Radio(UVK5RadioBase):
@classmethod
def k5_approve_firmware(cls, firmware):
approved_prefixes = ('k5_2.01.', 'app_2.01.', '2.01.',
'1o11', '4.00.', 'k5_4.00.', '5.00.')
approved_prefixes = (
'k5_2.01.', 'app_2.01.', '2.01.', '3.00.',
'1o11', '4.00.', 'k5_4.00.', '5.00.')
return any(firmware.startswith(x) for x in approved_prefixes)

@classmethod
Expand Down

0 comments on commit 8c8dd24

Please sign in to comment.