[chirp_devel] [PATCH 2 of 3] [tmd710] Expand charset to all ASCII except , which isn't supported in the live driver
Tom Hayward
Tue Mar 20 18:58:54 PDT 2012
# HG changeset patch
# User Tom Hayward <tom at tomh.us>
# Date 1332294775 21600
# Node ID c44a133c3fee07aea1440243b080cd52f6cada3e
# Parent 4a424067aa620bd2c1b288bdb8b20f6576cf6127
[tmd710] Expand charset to all ASCII except , which isn't supported in the live driver.
diff -r 4a424067aa62 -r c44a133c3fee chirp/kenwood_live.py
--- a/chirp/kenwood_live.py Wed Mar 14 17:13:47 2012 -0600
+++ b/chirp/kenwood_live.py Tue Mar 20 19:52:55 2012 -0600
@@ -544,7 +544,7 @@
rf.valid_modes = D710_MODES
rf.valid_duplexes = D710_DUPLEX
rf.valid_tuning_steps = D710_STEPS
- rf.valid_characters = chirp_common.CHARSET_ALPHANUMERIC
+ rf.valid_characters = chirp_common.CHARSET_ASCII.replace(',','')
rf.valid_name_length = 8
rf.memory_bounds = (0, 999)
return rf
More information about the chirp_devel
mailing list