[chirp_devel] [PATCH 0 of 3 ] Cross tones and bug fix for vx7 and an update for ft857

This patches has to be applied over the last pylint series of patches including yesterday one

# HG changeset patch # User Filippi Marco iz3gme.marco@gmail.com # Date 1335986823 -7200 # Node ID f347b682185ecb66c9d11ac51261ee9b9d3feb45 # Parent 1c4497c4dbd2d3cc2f6e4786b8ccea386241d60c [VX7] Init correctly valid flag fix Bug #157
diff -r 1c4497c4dbd2 -r f347b682185e chirp/vx7.py --- a/chirp/vx7.py Tue May 01 20:59:57 2012 +0200 +++ b/chirp/vx7.py Wed May 02 21:27:03 2012 +0200 @@ -272,6 +272,8 @@ if mem.empty: return
+ _flag["%s_valid" % nibble] = True + _mem.freq = mem.freq / 1000 _mem.offset = mem.offset / 1000 _mem.tone = chirp_common.TONES.index(mem.rtone)

# HG changeset patch # User Filippi Marco iz3gme.marco@gmail.com # Date 1335987114 -7200 # Node ID dc9edca7b05c7a555e53f7c3a8d84f1b88c498f6 # Parent f347b682185ecb66c9d11ac51261ee9b9d3feb45 [VX7] Add support for available cross tones feature #158
diff -r f347b682185e -r dc9edca7b05c chirp/vx7.py --- a/chirp/vx7.py Wed May 02 21:27:03 2012 +0200 +++ b/chirp/vx7.py Wed May 02 21:31:54 2012 +0200 @@ -66,7 +66,8 @@ tone:6; u8 zeros4:1, dcs:7; - u8 zeros5:6, + u8 zeros5:5, + is_split_tone:1, tmode:2; u8 charset; } memory[450]; @@ -74,7 +75,8 @@
DUPLEX = ["", "-", "+", "split"] MODES = ["FM", "AM", "WFM", "FM"] # last is auto -TMODES = ["", "Tone", "TSQL", "DTCS"] +TMODES = ["", "Tone", "TSQL", "DTCS", "Cross"] +CROSS_MODES = ["DTCS->", "Tone->DTCS", "DTCS->Tone"] STEPS = list(chirp_common.TUNING_STEPS) STEPS.remove(6.25) STEPS.remove(30.0) @@ -202,6 +204,8 @@ rf.memory_bounds = (1, 450) rf.can_odd_split = True rf.has_ctone = False + rf.has_cross = True + rf.valid_cross_modes = list(CROSS_MODES) return rf
def get_raw_memory(self, number): @@ -229,7 +233,12 @@ mem.freq = chirp_common.fix_rounded_step(int(_mem.freq) * 1000) mem.offset = int(_mem.offset) * 1000 mem.rtone = mem.ctone = chirp_common.TONES[_mem.tone] - mem.tmode = TMODES[_mem.tmode] + if not _mem.is_split_tone: + mem.tmode = TMODES[_mem.tmode] + mem.cross_mode = CROSS_MODES[0] + else: + mem.tmode = "Cross" + mem.cross_mode = CROSS_MODES[int(_mem.tmode)] mem.duplex = DUPLEX[_mem.duplex] if mem.duplex == "split": mem.offset = chirp_common.fix_rounded_step(mem.offset) @@ -277,7 +286,12 @@ _mem.freq = mem.freq / 1000 _mem.offset = mem.offset / 1000 _mem.tone = chirp_common.TONES.index(mem.rtone) - _mem.tmode = TMODES.index(mem.tmode) + if mem.tmode != "Cross": + _mem.is_split_tone = 0 + _mem.tmode = TMODES.index(mem.tmode) + else: + _mem.is_split_tone = 1 + _mem.tmode = CROSS_MODES.index(mem.cross_mode) _mem.duplex = DUPLEX.index(mem.duplex) _mem.mode = MODES.index(mem.mode) _mem.dcs = chirp_common.DTCS_CODES.index(mem.dtcs)

# HG changeset patch # User Filippi Marco iz3gme.marco@gmail.com # Date 1335987270 -7200 # Node ID 153bab41bfb913c0b6f5bf9063ffe8aec5ec540c # Parent dc9edca7b05c7a555e53f7c3a8d84f1b88c498f6 [FT857] Don't complain during get memory if current txtone is out of range part of Feature #100
diff -r dc9edca7b05c -r 153bab41bfb9 chirp/ft857.py --- a/chirp/ft857.py Wed May 02 21:31:54 2012 +0200 +++ b/chirp/ft857.py Wed May 02 21:34:30 2012 +0200 @@ -202,7 +202,12 @@ else: mem.tmode = "Cross" mem.cross_mode = self.CROSS_MODES[int(_mem.tmode)] - mem.ctone = chirp_common.TONES[_mem.txtone] + # don't want to fail for this + try: + mem.ctone = chirp_common.TONES[_mem.txtone] + except IndexError: + mem.ctone = chirp_common.TONES[0] +
def _set_tmode(self, mem, _mem): # have to put this bit to 0 otherwise we get strange display in tone

Applied the vx7 patches from this list. The 857 patch, and the previous two didn't apply for me. I've pushed the pylint patch, so can you check and see why they don't apply anymore?
Thanks!

Hi Dan I pulled from repository and smoothly applied all 857/817 patches. You say "The 857 patch, and the previous two" but they are 4 patches in total ... did you miss the elder "reduce pylint to silence" one?
73 de IZ3GME Marco
On 03/05/2012 00:11, Dan Smith wrote:
Applied the vx7 patches from this list. The 857 patch, and the previous two didn't apply for me. I've pushed the pylint patch, so can you check and see why they don't apply anymore?
Thanks!
chirp_devel mailing list chirp_devel@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_devel

I pulled from repository and smoothly applied all 857/817 patches. You say "The 857 patch, and the previous two" but they are 4 patches in total ... did you miss the elder "reduce pylint to silence" one?
Yep, that was it. The build failed last night because of another regression, so I pushed these in before kicking it off again.
participants (3)
-
Dan Smith
-
IZ3GME Marco
-
Marco Filippi