Bug #10573
closedTH-D72: wrong mapping of CTCSS Frequencies
100%
Description
CTCSS Frequencies > 156,7 Hz which are entered in CHIRP are wrong when uploaded to the TH-D72.
It seems, that CHIRP uses a wrong list for mapping the Frequencies. I will include the CTCSS table from the user Manual, which is correct and matches the frequencies of the Radio.
Files
Updated by Michi M over 1 year ago
The following Changes in the TH-D72 Driver
https://chirp.danplanet.com/projects/chirp/repository/github/revisions/master/entry/chirp/drivers/thd72.py
fixes the bug. Could anyone please merge it into the official sourcecode?
at abt line 345:
mem.rtone = THD72_TONES[_mem.rtone]
mem.ctone = THD72_TONES[_mem.ctone]
at abt line 402:
_mem.rtone = THD72_TONES.index(mem.rtone)
_mem.ctone = THD72_TONES.index(mem.ctone)
add at abt line 149:
THD72_TONES = list(chirp_common.TONES)
THD72_TONES.remove(159.8)
THD72_TONES.remove(165.5)
THD72_TONES.remove(171.3)
THD72_TONES.remove(177.3)
THD72_TONES.remove(183.5)
THD72_TONES.remove(189.9)
THD72_TONES.remove(196.6)
THD72_TONES.remove(199.5)
Updated by Dan Smith over 1 year ago
In chirp_common.py
there is a KENWOOD_TONES
defined and the thd72
driver should just use that. I can make this change later, but if you want to do it: kk7ds/chirp.
Updated by Michi M over 1 year ago
I looked at chirp_common.py, but could not find KENWOOD_TONES.
Updated by Dan Smith over 1 year ago
Sorry, they're here: https://github.com/kk7ds/chirp/blob/master/chirp/drivers/kenwood_live.py#L36
Updated by Dan Smith over 1 year ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset github|93f0e9408500ef2f19de093cd92e1090b7d5e0c2.