[chirp_devel] [PATCH] [UV-5R] Update Service Settings for Squelch
# HG changeset patch # User Jim Unroe rock.unroe@gmail.com # Date 1422831068 18000 # Node ID e14c23f17afffb874c4c163e1931b69dda793db2 # Parent 05767e5dabb45d0a99ca63df5705bc799e1858a3 [UV-5R] Update Service Settings for Squelch
Change the maximun setting value from 64 to 123.
Additional testing was done to determine the highest working value.
#2165
diff -r 05767e5dabb4 -r e14c23f17aff chirp/uv5r.py --- a/chirp/uv5r.py Thu Jan 29 07:24:01 2015 -0600 +++ b/chirp/uv5r.py Sun Feb 01 17:51:08 2015 -0500 @@ -1539,7 +1539,7 @@ _obj = self._memobj.squelch_new.uhf name = "%s Squelch %i" % (band.upper(), index) rs = RadioSetting(key, name, RadioSettingValueInteger( - 0, 64, getattr(_obj, "sql%i" % (index)))) + 0, 123, getattr(_obj, "sql%i" % (index)))) service.append(rs)
return group
participants (1)
-
Jim Unroe