Actions
Bug #10999
closedEmpty tx frequencies are not detected, resulting in a wrong split frequency for Baofeng radios
Start date:
12/09/2023
Due date:
% Done:
100%
Estimated time:
1:00 h
Chirp Version:
next
Model affected:
All radios using baofeng_common.py
Platform:
Windows
I read the instructions above:
Yes
Description
In baofeng_common.py in the function _is_txinh, a string is checked instead of a byte array. This results in a wrong tx frequency when it's empty.
Updated by Jim Unroe about 1 year ago
Likely the same cause as issue #10993. I can take care of it, if you wish.
Line 531...
return raw_tx == "\xFF\xFF\xFF\xFF"
should be this...
return raw_tx == b"\xFF\xFF\xFF\xFF"
Updated by Sander van der Wel about 1 year ago
@Jim Unroe I already made a pull request. It's a small change.
Updated by Jim Unroe about 1 year ago
Sander van der Wel wrote in #note-2:
@Jim Unroe I already made a pull request. It's a small change.
Thank you.
Updated by Sander van der Wel about 1 year ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset github|2dc8771fb2db328ee4ea0e464f5b5636e2ad988e.
Actions