Skip to content

Commit

Permalink
px777: Support newer radio revisions
Browse files Browse the repository at this point in the history
Fixes #11459
Fixes #11259
  • Loading branch information
kk7ds committed Aug 23, 2024
1 parent 8c234a9 commit c74c753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chirp/drivers/puxing.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def get_features(self):
elif self._memobj.model.model == PUXING_MODELS[328]:
# There are PX-777 that says to be model 328 ...
# for them we only know this freq limits till now
if self._memobj.model.limits == 0xEE:
if self._memobj.model.limits in (0xEE, 0xEF):
rf.valid_bands = [PUXING_777_BANDS[1]]
else:
raise Exception("Unsupported band limits 0x%02x for PX-777" %
Expand Down

0 comments on commit c74c753

Please sign in to comment.