Actions
Bug #4221
closedKenwood TH-D7G driver shows incorrect memory range
Start date:
11/14/2016
Due date:
% Done:
0%
Estimated time:
Chirp Version:
daily
Model affected:
TH-D7G
Platform:
Windows
I read the instructions above:
Description
The TH-D7G driver shows the memory range as 1-200, it should be 0-199.
Attempting to write to memory 200 returns the error shown in the attached file.
Chirp version is CHIRP daily-20161114, issue was also present in earlier versions.
Files
Updated by Larry Viesse about 8 years ago
This bug also impacts the TH-D7.
In file kenwood_live.py class THD7Radio
rf.memory_bounds = (1, self._upper)
should probably be changed to
rf.memory_bounds = (0, self._upper-1) or rf.memory_bounds = (0, 199)
This fixed the issue when tested against a Linux install.
Updated by Dan Smith over 1 year ago
- Status changed from New to Closed
- Target version set to chirp-py3
Thanks!
Actions