diff --git a/uvk5.py b/uvk5.py index d229058..05799ff 100644 --- a/uvk5.py +++ b/uvk5.py @@ -571,6 +571,11 @@ def _find_band(self, hz): B = BANDS_NOLIMITS else: B = BANDS + + # currently the hacked firmware sets band=1 below 50MHz + if self.FIRMWARE_NOLIMITS and mhz < 50.0: + return 1 + for a in B: if mhz >= B[a][0] and mhz <= B[a][1]: return a