Actions
Bug #887
closedupper valid_bands check is < instead of <=
Start date:
05/28/2013
Due date:
% Done:
0%
Estimated time:
Chirp Version:
daily
Model affected:
IC-208
Platform:
All
I read the instructions above:
Description
The check of the upper bound of valid_bands (2013-05-28 daily: chirp_common.py line 887 is inconsistent -- inclusive on the low end, exclusive on the high:
if lo <= mem.freq < hi:
The check (at least according to the frequencies defined for the IC-208) should be inclusive at both ends, i.e.
if lo <= mem.freq <= hi:
Actions