Skip to content

Commit 579c493

Browse files
committed
Fix incorrect squelch levels numbering
1 parent 64042d2 commit 579c493

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

uvk5_egzumer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
u8 closeGlitchThr[10];
240240
#seekto 0x1E50;
241241
u8 openGlitchThr[10];
242-
} sqlBand1_3;
242+
} sqlBand4_7;
243243
244244
struct {
245245
#seekto 0x1E60;
@@ -254,7 +254,7 @@
254254
u8 closeGlitchThr[10];
255255
#seekto 0x1EB0;
256256
u8 openGlitchThr[10];
257-
} sqlBand4_7;
257+
} sqlBand1_3;
258258
259259
#seekto 0x1EC0;
260260
struct {
@@ -2044,7 +2044,7 @@ def validate_upload_calibration(value):
20442044
for sql in range(0, 10):
20452045
prefix = "_mem.cal." + band + "."
20462046
postfix = "[" + str(sql) + "]"
2047-
appendLabel(radioSettingGroup, "Squelch " + str(sql + 1))
2047+
appendLabel(radioSettingGroup, "Squelch " + str(sql))
20482048

20492049
name = prefix + "openRssiThr" + postfix
20502050
tempval = minMaxDef(eval(name), 0, 255, 0)

0 commit comments

Comments
 (0)