Actions
New Model #9077
closedAdd Baofeng GT-5R
Start date:
05/19/2021
Due date:
% Done:
100%
Estimated time:
Equipment Loan/Gift Offered:
No
I read the instructions above:
Updated by Jim Unroe over 3 years ago
Nice. I just got mine yesterday. Thanks.
Jim
Updated by Bernhard Hailer over 3 years ago
- Status changed from New to Feedback
I assume this is complete?
Updated by Jim Unroe over 3 years ago
- Assignee set to Jim Unroe
Dan,
This patch does not work as intended.
vhftx = [144000000, 148000000] uhftx = [420000000, 450000000] def set_memory(self, mem): # If memory is outside the TX limits, the radio will refuse # transmit. Radioddity asked for us to enforce this behavior # in chirp for consistency. if mem.freq not in self.vhftx and mem.freq not in self.uhftx: LOG.info('Memory frequency outside TX limits of radio; ' 'forcing duplex=off')
vhftx and uhftx are lists with only 2 elements each.
mem.freq not in self.vhftx is always True except when 144000000 or 148000000
mem.freq not in self.uhftx is always True except when 420000000 or 450000000
This needs to be a VHF frequency >= 144000000 and < 148000000
and a UHF frequency >= 420000000 and < 450000000
I will work up a patch and submit it.
Jim KC9HI
Updated by Jim Unroe over 3 years ago
- Status changed from Feedback to In Progress
- Target version set to chirp-legacy
Updated by Jim Unroe over 3 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Patch submitted.
Jim KC9HI
Updated by Jim Unroe over 3 years ago
- Status changed from Resolved to Closed
Patch accepted. Support will be in the next CHIRP daily build.
Jim KC9HI
Actions