forked from whosmatt/uvmod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mods-ru.js
1774 lines (1704 loc) · 92.5 KB
/
mods-ru.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
modClasses = [
/*
class Mod_Example extends FirmwareMod {
constructor() {
super("Example Mod", "This mod does absolutely nothing and is used as an example for implementing new mods", 0); // Add name, description and size (additional flash used, 0 for most mods)
// Customize the mod-specific div with input elements
// There is a helper function for adding input fields easily:
this.inputField1 = addInputField(this.modSpecificDiv, "Example Mod specific input field 1", "Editable data");
}
apply(firmwareData) {
log("The value of input field 1 is: " + this.inputField1.value);
// Implement the logic to apply the specific mod here
// You can use the mod-specific inputs in this.modSpecificDiv
return firmwareData;
}
}
,
*/
class Mod_BatteryIcon extends FirmwareMod {
constructor() {
super("Значок батареи", "Исправляет иконку заряда батареи.", 0);
}
apply(firmwareData) {
const offset = 0xD348 + 134;
const oldData = hexString("3e227f4141414141414141414141414163003e227f415d5d4141414141414141414163003e227f415d5d415d5d4141414141414163003e227f415d5d415d5d415d5d4141414163003e227f415d5d415d5d415d5d415d5d4163");
const newData = hexString("3e2263414141414141414141414141417f003e2263414141414141414141415d5d4163003e2263414141414141415d5d415d5d417f003e2263414141415d5d415d5d415d5d417f003e2263415d5d415d5d415d5d415d5d417f");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_ChangeContrast extends FirmwareMod {
constructor() {
super("Контраст LCD", "Изменяет контраст LCD на любое значение от 0 до 63 (больше - темнее). Значение по умолчанию 31", 0);
this.contrastValue = addInputField(this.modSpecificDiv, "Укажите новое значение контраста в диапазоне 0-63:", "31");
}
apply(firmwareData) {
const minValue = 0;
const maxValue = 63;
const inputValue = parseInt(this.contrastValue.value);
if (!isNaN(inputValue) && inputValue >= minValue && inputValue <= maxValue) {
const newData = new Uint8Array([inputValue]);
firmwareData = replaceSection(firmwareData, newData, 0xb7b0);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Значение контраста должно быть числом в диапазоне 0-63!`);
}
return firmwareData;
}
}
,
class Mod_Font extends FirmwareMod {
constructor() {
super("Модифицированный шрифт", "Заменяет шрифт на один из выбранных: ", 0);
this.selectVCR = addRadioButton(this.modSpecificDiv, "Крупные цифры на шрифт как в старых видеомагнитофонах/телевизорах", "selectVCR", "selectFont");
this.selectFuturistic = addRadioButton(this.modSpecificDiv, "Футуристичный шрифт (от DO7OO), заменяет большие и маленькие цифры", "selectFuturistic", "selectFont");
this.selectVCR.checked = true;
}
apply(firmwareData) {
if (this.selectVCR.checked) {
const bigDigits = hexString("0000F8FC0686C6E6F676FCF80000001F3F7767636160703F1F0000000000181CFEFE00000000000000000060607F7F60600000000000181C8686868686C6FC780000007E7F6361616161616060000000181C0606868686C6FC7800000018387060616161733F1E00000080C0E070381CFEFE00000000000707060606067F7F06060000007E7E6666666666E6C68600000018387060606060703F1F000000F8FC8686868686861C180000001F3F7161616161733F1E000000060606060686C6E67E3E000000000000007F7F0100000000000078FCC686868686C6FC780000001E3F7361616161733F1E00000078FCC68686868686FCF800000018387161616161713F1F000000008080808080808080000000000001010101010101010000");
firmwareData = replaceSection(firmwareData, bigDigits, 0xd502);
}
else if (this.selectFuturistic.checked) {
const bigDigits = hexString("00FEFF01010101018181FFFF00007F7F40404040407F7F7F7F000000000000008080FFFF0000000000000000007F7F7F7F00000000018181818181818181FFFE00007F7F7F7F404040404040400000818181818181818181FFFE0000404040404040407F7F7F7F00007FFF80808080808080FFFF0000000000000000007F7F7F7F0000FEFF8181818181818181810000404040404040407F7F7F7F0000FEFF81818181818181818100007F7F7F7F40404040407F7F0000010101010101018181FFFE0000000000000000007F7F7F7F0000FEFF81818181818181FFFF00007F7F40404040407F7F7F7F0000FEFF81818181818181FFFF0000000000000000007F7F7F7F000000808080808080808080000000000303030303030303030000");
const smallDigits = hexString("007E414141797F00000000787F000079794949494E0049494949797E0007080808787F004E4949497979007E79494949790001010101797E007E494949797F000E090909797F0008080808080000000000000000");
firmwareData = replaceSection(firmwareData, bigDigits, 0xd502);
firmwareData = replaceSection(firmwareData, smallDigits, 0xd620);
}
log(`Успешно применён: ${this.name}.`);
return firmwareData;
}
}
,
class Mod_FreqCopyTimeout extends FirmwareMod {
constructor() {
super("Откл. таймаут при копировании", "Отключает таймаут при использовании функции копирования частоты/субтонов с сообщением \"SCAN FAIL\", позволяя продолжать сканирование пока не будет обнаружен сигнал.", 0);
}
apply(firmwareData) {
const offset = 0x4bbc;
const oldData = hexString("521c");
const newData = hexString("00bf");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_DisableTX extends FirmwareMod {
constructor() {
super("Откл. передачу полностью", "Запрещает передачу на всех частотах, превращая рацию в приёмник.", 0);
}
apply(firmwareData) {
const offset = 0x180e;
const oldData = hexString("cf2a");
const newData = hexString("f0bd");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_EnableAM extends FirmwareMod {
constructor() {
super("Разрешить AM везде", "Разрешает указывать модуляцию AM на любых диапазонах, а не только на авиа.", 0);
}
apply(firmwareData) {
const offset1 = 0x6232;
const offset2 = 0x6246;
const offset3 = 0x624c;
const oldData1 = hexString("0b");
const oldData2 = hexString("01");
const oldData3 = hexString("b07b");
const newData1 = hexString("0e");
const newData2 = hexString("04");
const newData3 = hexString("01e0");
if (compareSection(firmwareData, oldData1, offset1) && compareSection(firmwareData, oldData2, offset2) && compareSection(firmwareData, oldData3, offset3)) {
firmwareData = replaceSection(firmwareData, newData1, offset1);
firmwareData = replaceSection(firmwareData, newData2, offset2);
firmwareData = replaceSection(firmwareData, newData3, offset3);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_FrequencyRangeSimple extends FirmwareMod {
constructor() {
super("Расширить лимиты RX", "Разрешает приём от 18 МГц до 999 МГц. Диапазоны передачи не изменяются.", 0);
}
apply(firmwareData) {
const offset = 0xe074;
const oldData = hexString("404b4c0080cba4000085cf00c0800901c00e1602005a6202c029cd0280f77300f684cf00b6800901b60e1602f6596202b629cd0200879303");
const newData = hexString("40771b0080cba4000085cf00c0800901c00e1602005a6202c029cd0280f77300f684cf00b6800901b60e1602f6596202b629cd02f6e0f505");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_ChangeTXLimits extends FirmwareMod {
constructor() {
super("Расширить лимиты TX", "Разрешает передачу на указанном диапазоне частот.", 0);
this.inputMinTX = addInputField(this.modSpecificDiv, "Укажите новое значение минимальной частоты в дапазоне 18-1300 МГц:", "50");
this.inputMaxTX = addInputField(this.modSpecificDiv, "Укажите новое значение максимальной частоты в дапазоне 18-1300 МГц:", "600");
}
apply(firmwareData) {
const offset = 0x150c;
const txStart = parseInt(this.inputMinTX.value) * 100000;
const txStop = parseInt(this.inputMaxTX.value) * 100000;
if ((txStart <= txStop) && (txStart >= 1800000) && (txStart <= 130000000) && (txStop >= 1800000) && (txStop <= 130000000)) {
const buffer = new ArrayBuffer(8);
const dataView = new DataView(buffer);
dataView.setUint32(0, txStart, true);
dataView.setUint32(4, txStop, true);
const txHex = new Uint8Array(buffer);
firmwareData = replaceSection(firmwareData, txHex, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неверные данные! Частоты должны быть более 18 МГц и менее 1300 МГц, максимальная больше или равна минимальной.`);
}
return firmwareData;
}
}
,
class Mod_FrequencySteps extends FirmwareMod {
constructor() {
super("Шаг перестройки частоты", "Изменить доступные в меню шаги чатоты.", 0);
this.inputStep1 = addInputField(this.modSpecificDiv, "Шаг 1 (Гц)", "2500");
this.inputStep2 = addInputField(this.modSpecificDiv, "Шаг 2 (Гц)", "5000");
this.inputStep3 = addInputField(this.modSpecificDiv, "Шаг 3 (Гц)", "6250");
this.inputStep4 = addInputField(this.modSpecificDiv, "Шаг 4 (Гц)", "10000");
this.inputStep5 = addInputField(this.modSpecificDiv, "Шаг 5 (Гц)", "12500");
this.inputStep6 = addInputField(this.modSpecificDiv, "Шаг 6 (Гц)", "25000");
this.inputStep7 = addInputField(this.modSpecificDiv, "Шаг 7 (Гц) (доступен только на втором диапазоне)", "8330");
}
apply(firmwareData) {
const offset = 0xE0C8;
const steps = [
Math.trunc(parseInt(this.inputStep1.value) * 0.1),
Math.trunc(parseInt(this.inputStep2.value) * 0.1),
Math.trunc(parseInt(this.inputStep3.value) * 0.1),
Math.trunc(parseInt(this.inputStep4.value) * 0.1),
Math.trunc(parseInt(this.inputStep5.value) * 0.1),
Math.trunc(parseInt(this.inputStep6.value) * 0.1),
Math.trunc(parseInt(this.inputStep7.value) * 0.1),
];
// Create an 8-byte buffer with the specified values
const buffer = new ArrayBuffer(14);
const dataView = new DataView(buffer);
// Set each step at their respective offsets
for (let i = 0; i < steps.length; i++) {
dataView.setUint16(i * 2, steps[i], true); // true indicates little-endian byte order
}
// Convert the buffer to a Uint8Array
const stepsHex = new Uint8Array(buffer);
// Replace the 14-byte section at the offset with the new buffer
firmwareData = replaceSection(firmwareData, stepsHex, offset);
log(`Успешно применён: ${this.name}.`);
return firmwareData;
}
}
,
class Mod_DoubleBacklightDuration extends FirmwareMod {
constructor() {
super("Удвоить длительность подсветки", "Увеличивает длительность подсветки, указанную в настройках, в два раза. Например, если указать в настройках 5, то подсветка будет работать 10 секунд.", 0);
}
apply(firmwareData) {
const offset = 0x5976;
const oldData = hexString("40");
const newData = hexString("80");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_SkipBootscreen extends FirmwareMod {
constructor() {
super("Пропуск приветствия", "Пропускает экран приветствия и сразу отображает главный экран при включении.", 0);
}
apply(firmwareData) {
const offset = 0xd1e6;
const oldData = hexString("fcf7a9fc");
const newData = hexString("00bf00bff8f7b9fb00f002f8");
if (compareSection(firmwareData, oldData, offset)) {
firmwareData = replaceSection(firmwareData, newData, offset);
log(`Успешно применён: ${this.name}.`);
}
else {
log(`Ошибка применения ${this.name}: Неожиданные данные! Патч либо уже был применён, либо несовместимая версия прошивки.`);
}
return firmwareData;
}
}
,
class Mod_MenuStrings extends FirmwareMod {
constructor() {
super("Пункты меню", "Изменяет текст в пунктах меню.", 0);
this.selectNGCMenuStr = addRadioButton(this.modSpecificDiv, "Модификация пунктов меню от Валентина Воронина", "selectNGCMenuStr", "selectMenuStr");
this.selectCustMenuStr = addRadioButton(this.modSpecificDiv, "Свои пункты меню. В этом JSON объекте содержатся названия всех пунктов меню со смещением и максимальным размером. Изменять можно только название пункта, длина не должна превышать указанный размер, алфавит только латиница. Для удобства можно воспользоваться сервисом jsoneditoronline.org или аналогичным.", "selectCustMenuStr", "selectMenuStr");
this.selectNGCMenuStr.checked = true;
// this.selectCustMenuStr.disabled = true;
// the b l o c k
const strings = [
{
"offset": 56470,
"description": "squelch",
"size": 6,
"string": "SQLCH"
},
{
"offset": 56477,
"description": "step",
"size": 6,
"string": "STEP"
},
{
"offset": 56484,
"description": "txpower",
"size": 6,
"string": "TXPWR"
},
{
"offset": 56491,
"description": "r dcs",
"size": 6,
"string": "R_DCS"
},
{
"offset": 56498,
"description": "r ctcs",
"size": 6,
"string": "R_CTCS"
},
{
"offset": 56505,
"description": "t dcs",
"size": 6,
"string": "T_DCS"
},
{
"offset": 56512,
"description": "t ctcs",
"size": 6,
"string": "T_CTCS"
},
{
"offset": 56519,
"description": "tx shift direction",
"size": 6,
"string": "SHFT-D"
},
{
"offset": 56526,
"description": "tx shift offset",
"size": 6,
"string": "OFFSET"
},
{
"offset": 56533,
"description": "wide/narrow",
"size": 6,
"string": "BNDWDH"
},
{
"offset": 56540,
"description": "scramble",
"size": 6,
"string": "SCRMBL"
},
{
"offset": 56547,
"description": "busy channel ptt lock",
"size": 6,
"string": "BUSYLK"
},
{
"offset": 56554,
"description": "save channel",
"size": 6,
"string": "MEM-CH"
},
{
"offset": 56561,
"description": "battery saver",
"size": 6,
"string": "BATSVR"
},
{
"offset": 56568,
"description": "voice activated mode",
"size": 6,
"string": "VOXPTT"
},
{
"offset": 56575,
"description": "backlight timeout",
"size": 6,
"string": "BKLGHT"
},
{
"offset": 56582,
"description": "dual watch",
"size": 6,
"string": "DUALRX"
},
{
"offset": 56589,
"description": "cross band mode",
"size": 6,
"string": "CROSS"
},
{
"offset": 56596,
"description": "key beep",
"size": 6,
"string": "BEEP"
},
{
"offset": 56603,
"description": "tx timeout",
"size": 6,
"string": "TXTIME"
},
{
"offset": 56610,
"description": "voice prompt",
"size": 6,
"string": "VOICE"
},
{
"offset": 56617,
"description": "scan mode",
"size": 6,
"string": "SCANMD"
},
{
"offset": 56624,
"description": "channel display mode",
"size": 6,
"string": "CHDISP"
},
{
"offset": 56631,
"description": "auto keypad lock",
"size": 6,
"string": "AUTOLK"
},
{
"offset": 56638,
"description": "ch in scan list 1",
"size": 6,
"string": "S-ADD1"
},
{
"offset": 56645,
"description": "ch in scan list 2",
"size": 6,
"string": "S-ADD2"
},
{
"offset": 56652,
"description": "tail tone elimination",
"size": 6,
"string": "STE"
},
{
"offset": 56659,
"description": "repeater tail tone elimination",
"size": 6,
"string": "RP-STE"
},
{
"offset": 56666,
"description": "mic sensitivity",
"size": 6,
"string": "MIC"
},
{
"offset": 56673,
"description": "one key call channel",
"size": 6,
"string": "1-CALL"
},
{
"offset": 56680,
"description": "active scan list",
"size": 6,
"string": "S-LIST"
},
{
"offset": 56687,
"description": "browse scan list 1",
"size": 6,
"string": "SLIST1"
},
{
"offset": 56694,
"description": "browse scan list 2",
"size": 6,
"string": "SLIST2"
},
{
"offset": 56701,
"description": "alarm mode",
"size": 6,
"string": "AL-MOD"
},
{
"offset": 56708,
"description": "dtmf radio id",
"size": 6,
"string": "ANI-ID"
},
{
"offset": 56715,
"description": "dtmf upcode",
"size": 6,
"string": "UPCODE"
},
{
"offset": 56722,
"description": "dtmf downcode",
"size": 6,
"string": "DWCODE"
},
{
"offset": 56729,
"description": "dtmf using keypad while ptt",
"size": 6,
"string": "D-ST"
},
{
"offset": 56736,
"description": "dtmf response mode",
"size": 6,
"string": "D-RSP"
},
{
"offset": 56743,
"description": "dtmf hold time",
"size": 6,
"string": "D-HOLD"
},
{
"offset": 56750,
"description": "dtmf pre-load time",
"size": 6,
"string": "D-PRE"
},
{
"offset": 56757,
"description": "dtmf transmit id on ptt",
"size": 6,
"string": "PTT-ID"
},
{
"offset": 56764,
"description": "dtmf only listen to contacts",
"size": 6,
"string": "D-DCD"
},
{
"offset": 56771,
"description": "dtmf list/call contacts",
"size": 6,
"string": "D-LIST"
},
{
"offset": 56778,
"description": "power on screen",
"size": 6,
"string": "PONMSG"
},
{
"offset": 56785,
"description": "end of talk tone",
"size": 6,
"string": "ROGER"
},
{
"offset": 56792,
"description": "battery voltage",
"size": 6,
"string": "VOL"
},
{
"offset": 56799,
"description": "enable AM reception on AM bands",
"size": 6,
"string": "AM"
},
{
"offset": 56806,
"description": "enable NOAA scan",
"size": 6,
"string": "NOAA_S"
},
{
"offset": 56813,
"description": "delete channel",
"size": 6,
"string": "DEL-CH"
},
{
"offset": 56820,
"description": "reset radio",
"size": 6,
"string": "RESET"
},
{
"offset": 56827,
"description": "enable tx on 350mhz band",
"size": 6,
"string": "350TX"
},
{
"offset": 56834,
"description": "limit to local ham frequencies",
"size": 6,
"string": "F-LOCK"
},
{
"offset": 56841,
"description": "enable tx on 200mhz band",
"size": 6,
"string": "200TX"
},
{
"offset": 56848,
"description": "enable tx on 500mhz band",
"size": 6,
"string": "500TX"
},
{
"offset": 56855,
"description": "enable 350mhz band",
"size": 6,
"string": "350EN"
},
{
"offset": 56862,
"description": "enable scrambler option",
"size": 6,
"string": "SCREN"
},
{
"offset": 56869,
"description": "battery saver: off",
"size": 3,
"string": "OFF"
},
{
"offset": 56873,
"description": "battery saver: 1:1",
"size": 3,
"string": "1:1"
},
{
"offset": 56877,
"description": "battery saver: 1:2",
"size": 3,
"string": "1:2"
},
{
"offset": 56881,
"description": "battery saver: 1:3",
"size": 3,
"string": "1:3"
},
{
"offset": 56885,
"description": "battery saver: 1:4",
"size": 3,
"string": "1:4"
},
{
"offset": 56889,
"description": "tx power: low",
"size": 4,
"string": "LOW"
},
{
"offset": 56894,
"description": "tx power: mid",
"size": 4,
"string": "MID"
},
{
"offset": 56899,
"description": "tx power: high",
"size": 4,
"string": "HIGH"
},
{
"offset": 56904,
"description": "bandwidth: wide",
"size": 6,
"string": "WIDE"
},
{
"offset": 56911,
"description": "bandwidth: narrow",
"size": 6,
"string": "NARROW"
},
{
"offset": 56918,
"description": "multiple options 1: off",
"size": 6,
"string": "OFF"
},
{
"offset": 56925,
"description": "multiple options 1: chan a",
"size": 6,
"string": "CHAN_A"
},
{
"offset": 56932,
"description": "multiple options 1: chan b",
"size": 6,
"string": "CHAN_B"
},
{
"offset": 56939,
"description": "multiple options 2: off",
"size": 3,
"string": "OFF"
},
{
"offset": 56943,
"description": "multiple options 2: on",
"size": 3,
"string": "ON"
},
{
"offset": 56947,
"description": "voice prompt: off",
"size": 3,
"string": "OFF"
},
{
"offset": 56951,
"description": "voice prompt: chinese",
"size": 3,
"string": "CHI"
},
{
"offset": 56955,
"description": "voice prompt: english",
"size": 3,
"string": "ENG"
},
{
"offset": 56959,
"description": "dtmf ptt id: off",
"size": 4,
"string": "OFF"
},
{
"offset": 56964,
"description": "dtmf ptt id: upcode on ptt",
"size": 4,
"string": "BOT"
},
{
"offset": 56969,
"description": "dtmf ptt id: downcode after ptt",
"size": 4,
"string": "EOT"
},
{
"offset": 56974,
"description": "dtmf ptt id: both",
"size": 4,
"string": "BOTH"
},
{
"offset": 56979,
"description": "scan mode: continue after 5s",
"size": 2,
"string": "TO"
},
{
"offset": 56982,
"description": "scan mode: stay while signal",
"size": 2,
"string": "CO"
},
{
"offset": 56985,
"description": "scan mode: stop on signal",
"size": 2,
"string": "SE"
},
{
"offset": 56988,
"description": "channel display mode: freq",
"size": 4,
"string": "FREQ"
},
{
"offset": 56993,
"description": "channel display mode: chan",
"size": 4,
"string": "CHAN"
},
{
"offset": 56998,
"description": "channel display mode: name",
"size": 4,
"string": "NAME"
},
{
"offset": 57003,
"description": "tx shift direction: off",
"size": 4,
"string": "OFF"
},
{
"offset": 57007,
"description": "tx shift direction: +",
"size": 4,
"string": "+"
},
{
"offset": 57011,
"description": "tx shift direction: -",
"size": 4,
"string": "-"
},
{
"offset": 57015,
"description": "alarm mode: local",
"size": 4,
"string": "SITE"
},
{
"offset": 57020,
"description": "alarm mode: local + remote",
"size": 4,
"string": "TONE"
},
{
"offset": 57025,
"description": "power on screen: full",
"size": 4,
"string": "FULL"
},
{
"offset": 57030,
"description": "power on screen: custom message",
"size": 4,
"string": "MSG"
},
{
"offset": 57035,
"description": "power on screen: batt voltage",
"size": 4,
"string": "VOL"
},
{
"offset": 57040,
"description": "reset: keep channel parameters",
"size": 3,
"string": "VFO"
},
{
"offset": 57044,
"description": "reset: reset everything",
"size": 3,
"string": "ALL"
},
{
"offset": 57048,
"description": "dtmf response: nothing",
"size": 5,
"string": "NULL"
},
{
"offset": 57054,
"description": "dtmf response: local ring",
"size": 5,
"string": "RING"
},
{
"offset": 57060,
"description": "dtmf response: auto call back",
"size": 5,
"string": "REPLY"
},
{
"offset": 57066,
"description": "dtmf response: ring and call",
"size": 5,
"string": "BOTH"
},
{
"offset": 57072,
"description": "end of talk tone: off",
"size": 5,
"string": "OFF"
},
{
"offset": 57078,
"description": "end of talk tone: classic beep",
"size": 5,
"string": "ROGER"
},
{
"offset": 57084,
"description": "end of talk tone: MDC ID sound",
"size": 5,
"string": "MDC"
},
{
"offset": 57090,
"description": "f lock: none",
"size": 3,
"string": "OFF"
},
{
"offset": 57094,
"description": "f lock: region FCC",
"size": 3,
"string": "FCC"
},
{
"offset": 57098,
"description": "f lock: region Europe",
"size": 3,
"string": "CE"
},
{
"offset": 57102,
"description": "f lock: region GB",
"size": 3,
"string": "GB"
},
{
"offset": 57106,
"description": "f lock: 430 band",
"size": 3,
"string": "430"
},
{
"offset": 57110,
"description": "f lock: 438 band",
"size": 3,
"string": "438"
}
];
this.menuStringsTextarea = document.createElement("textarea");
this.menuStringsTextarea.classList.add("w-100", "form-control");
this.menuStringsTextarea.placeholder = "Тут должен быть JSON -объект, перезагрузите страницу, чтобы сбросить!";
this.menuStringsTextarea.value = JSON.stringify(strings, null, 2);
this.modSpecificDiv.appendChild(this.menuStringsTextarea);
}
apply(firmwareData) {
if (this.selectNGCMenuStr.checked) {
var jsonData = [
{
"offset": 56470,
"description": "squelch",
"size": 6,
"string": "SQL"
},
{
"offset": 56477,
"description": "step",
"size": 6,
"string": "STEP"
},
{
"offset": 56484,
"description": "txpower",
"size": 6,
"string": "TX-POW"
},
{
"offset": 56491,
"description": "r dcs",
"size": 6,