From 8c8dd24a6eb9fb37e378dd0eaf3ce047dab6d86c Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Mon, 26 Aug 2024 15:55:31 -0700 Subject: [PATCH] uvk5: Bless 3.00.x firmware As reported in #11495, this firmware version was found in the field to be working. Fixes #11495 --- chirp/drivers/uvk5.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chirp/drivers/uvk5.py b/chirp/drivers/uvk5.py index fb9ffe25..d6a956ca 100644 --- a/chirp/drivers/uvk5.py +++ b/chirp/drivers/uvk5.py @@ -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