From d76ee57610056bd6190b042558b9f85d81ee949a Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Mon, 17 Jun 2024 18:59:29 -0700 Subject: [PATCH] kenwood v71: Fix long-standing valid_bands issue Somehow this driver has never had valid_bands defined?! Fixes #11386 --- chirp/drivers/kenwood_live.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chirp/drivers/kenwood_live.py b/chirp/drivers/kenwood_live.py index f14bb190..9d4e56a0 100644 --- a/chirp/drivers/kenwood_live.py +++ b/chirp/drivers/kenwood_live.py @@ -798,6 +798,7 @@ class TMD710Radio(KenwoodLiveRadio): rf.valid_name_length = 8 rf.valid_skips = D710_SKIP rf.memory_bounds = (0, 999) + rf.valid_bands = [(118000000, 524000000), (800000000, 1300000000)] return rf def _cmd_get_memory(self, number):