[chirp_devel] [PATCH 1 of 2] [ft8x7-us] make memory skip mutable for 60m channels
# HG changeset patch # User Marco Filippi iz3gme.marco@gmail.com # Date 1424188805 -3600 # Tue Feb 17 17:00:05 2015 +0100 # Node ID 4d214d7fd78da3f7eecaea2dc0028030bf1af314 # Parent f74f533828ed82b85ab08301c8e4e6ae5faf5370 [ft8x7-us] make memory skip mutable for 60m channels
implements #2325
diff --git a/chirp/ft817.py b/chirp/ft817.py --- a/chirp/ft817.py +++ b/chirp/ft817.py @@ -1093,7 +1093,7 @@
mem = self._get_memory(mem, _mem)
- mem.immutable = ["number", "skip", "rtone", "ctone", + mem.immutable = ["number", "rtone", "ctone", "extd_number", "name", "dtcs", "tmode", "cross_mode", "dtcs_polarity", "power", "duplex", "offset", "comment", "empty"] diff --git a/chirp/ft857.py b/chirp/ft857.py --- a/chirp/ft857.py +++ b/chirp/ft857.py @@ -1029,7 +1029,7 @@
mem = self._get_memory(mem, _mem)
- mem.immutable = ["number", "skip", "rtone", "ctone", + mem.immutable = ["number", "rtone", "ctone", "extd_number", "name", "dtcs", "tmode", "cross_mode", "dtcs_polarity", "power", "duplex", "offset", "comment", "empty"]
# HG changeset patch # User Marco Filippi iz3gme.marco@gmail.com # Date 1424189945 -3600 # Tue Feb 17 17:19:05 2015 +0100 # Node ID dacac15ebd53e4a02aa20221bc5c1dba85b8a8a9 # Parent 4d214d7fd78da3f7eecaea2dc0028030bf1af314 [ft857] Fix coding style
No functional changes at all, this patch exists only to pass style checks
relates to #159
diff --git a/chirp/ft857.py b/chirp/ft857.py --- a/chirp/ft857.py +++ b/chirp/ft857.py @@ -446,7 +446,8 @@ 3. Press and hold in the [MODE <] and [MODE >] keys while turning the radio on ("CLONE MODE" will appear on the display). - 4. Press the [A](RCV) key ("receiving" will appear on the LCD).""")) + 4. Press the [A](RCV) key ("receiving" will appear on the LCD).""" + )) return rp
def get_features(self): @@ -692,7 +693,8 @@ rs = RadioSetting("disp_color_band", "Display color band set", RadioSettingValueInteger(0, 1, _settings.disp_color_band)) panel.append(rs) - rs = RadioSetting("disp_color_memgrp", "Display color memory group set", + rs = RadioSetting("disp_color_memgrp", + "Display color memory group set", RadioSettingValueInteger(0, 1, _settings.disp_color_memgrp)) panel.append(rs) rs = RadioSetting("disp_color_mode", "Display color mode set",
participants (1)
-
Marco Filippi IZ3GME