-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Configurator.Designer.vb
2680 lines (2675 loc) · 106 KB
/
Configurator.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Configurator
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
components = New ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Configurator))
btnGet = New Button()
txtIP = New TextBox()
txtFrequency = New TextBox()
txtResolution = New TextBox()
txtFPS = New TextBox()
txtEncode = New TextBox()
txtBitrate = New TextBox()
txtExposure = New TextBox()
txtContrast = New TextBox()
txtHue = New TextBox()
txtSaturation = New TextBox()
txtLuminance = New TextBox()
txtPower = New TextBox()
txtSensor = New TextBox()
txtFreq24 = New TextBox()
txtMCS = New TextBox()
txtLDPC = New TextBox()
txtSTBC = New TextBox()
txtFECN = New TextBox()
txtFECK = New TextBox()
txtPower24 = New TextBox()
TabControl1 = New TabControl()
TabPage1 = New TabPage()
btnRestartWFB = New Button()
ComboBox9 = New ComboBox()
ComboBox8 = New ComboBox()
ComboBox7 = New ComboBox()
ComboBox6 = New ComboBox()
ComboBox5 = New ComboBox()
ComboBox4 = New ComboBox()
ComboBox3 = New ComboBox()
ComboBox2 = New ComboBox()
ComboBox1 = New ComboBox()
TabPage2 = New TabPage()
cmbMirror = New ComboBox()
cmbFlip = New ComboBox()
txtMirror = New TextBox()
txtFlip = New TextBox()
Label6 = New Label()
btnRestartMajestic = New Button()
cmbLuminance = New ComboBox()
cmbSaturation = New ComboBox()
cmbHue = New ComboBox()
cmbContrast = New ComboBox()
cmbExposure = New ComboBox()
cmbBitrate = New ComboBox()
cmbCodec = New ComboBox()
cmbFPS = New ComboBox()
cmbResolution = New ComboBox()
TabPage3 = New TabPage()
rBtnRECOFF = New RadioButton()
rBtnRECON = New RadioButton()
btnOnboardREC = New Button()
btnDualOSD = New Button()
btnFontsINAV = New Button()
btnMSP = New Button()
btnExtra = New Button()
cmbRC_Channel = New ComboBox()
txtRC_CHANNEL = New TextBox()
cmbAggregate = New ComboBox()
txtAggregate = New TextBox()
btnUART0OFF = New Button()
btnUART0 = New Button()
cmbMCSTLM = New ComboBox()
cmbRouter = New ComboBox()
cmbBaud = New ComboBox()
cmbSerial = New ComboBox()
txtMCSTLM = New TextBox()
txtRouter = New TextBox()
txtBaud = New TextBox()
txtSerial = New TextBox()
TabPage4 = New TabPage()
btnAddButtons = New Button()
btnReset = New Button()
rBtnMode1 = New RadioButton()
rBtnMode2 = New RadioButton()
btnMAVGS = New Button()
btnMSPGS = New Button()
Label9 = New Label()
Label8 = New Label()
checkCustomRes = New CheckBox()
txtResY = New TextBox()
txtResX = New TextBox()
txtFormat = New TextBox()
cmbFormat = New ComboBox()
Label2 = New Label()
cmbOSD = New ComboBox()
cmbCodecVRX = New ComboBox()
cmbResolutionVRX = New ComboBox()
txtResolutionVRX = New TextBox()
txtMavlinkVRX = New TextBox()
txtCodecVRX = New TextBox()
txtOSD = New TextBox()
txtPortVRX = New TextBox()
txtExtras = New TextBox()
TabPage5 = New TabPage()
cmbVersion = New ComboBox()
Label10 = New Label()
cmbSensor = New ComboBox()
btnOfflinefw = New Button()
Label7 = New Label()
Button3 = New Button()
Button2 = New Button()
btnDriverBackup = New Button()
txtDriver = New TextBox()
btnDriver = New Button()
btnSensor = New Button()
Label5 = New Label()
lblScan = New Label()
btnScan = New Button()
txtScan = New TextBox()
Label4 = New Label()
btnGenerateKeys = New Button()
btnSendKeys = New Button()
btnReceiveKeys = New Button()
GroupBox1 = New GroupBox()
txtSOC = New TextBox()
btnResetCam = New Button()
ProgressBar1 = New ProgressBar()
TabPage6 = New TabPage()
Label11 = New Label()
CheckBox18 = New CheckBox()
CheckBox17 = New CheckBox()
CheckBox16 = New CheckBox()
CheckBox15 = New CheckBox()
CheckBox14 = New CheckBox()
CheckBox13 = New CheckBox()
CheckBox12 = New CheckBox()
CheckBox11 = New CheckBox()
CheckBox10 = New CheckBox()
CheckBox9 = New CheckBox()
CheckBox8 = New CheckBox()
CheckBox7 = New CheckBox()
CheckBox6 = New CheckBox()
CheckBox5 = New CheckBox()
CheckBox3 = New CheckBox()
CheckBox4 = New CheckBox()
CheckBox2 = New CheckBox()
CheckBox1 = New CheckBox()
RadioButton18 = New RadioButton()
RadioButton17 = New RadioButton()
RadioButton16 = New RadioButton()
RadioButton15 = New RadioButton()
RadioButton14 = New RadioButton()
RadioButton13 = New RadioButton()
RadioButton12 = New RadioButton()
RadioButton11 = New RadioButton()
RadioButton10 = New RadioButton()
RadioButton9 = New RadioButton()
RadioButton8 = New RadioButton()
RadioButton7 = New RadioButton()
RadioButton6 = New RadioButton()
RadioButton5 = New RadioButton()
RadioButton4 = New RadioButton()
RadioButton3 = New RadioButton()
RadioButton2 = New RadioButton()
RadioButton1 = New RadioButton()
Button1 = New Button()
btnRIGHT = New Button()
btnLEFT = New Button()
btnDOWN = New Button()
btnUP = New Button()
PictureBox1 = New PictureBox()
btnSaveReboot = New Button()
btnRead = New Button()
Label1 = New Label()
btnToolTip = New ToolTip(components)
btnReboot = New Button()
txtPassword = New TextBox()
connected = New PictureBox()
rBtnCam = New RadioButton()
rBtnNVR = New RadioButton()
rBtnRadxaZero3w = New RadioButton()
Label3 = New Label()
MenuStrip1 = New MenuStrip()
BackgroundWorker1 = New ComponentModel.BackgroundWorker()
Timer1 = New Timer(components)
version = New Label()
btnMSPExtra = New Button()
TabControl1.SuspendLayout()
TabPage1.SuspendLayout()
TabPage2.SuspendLayout()
TabPage3.SuspendLayout()
TabPage4.SuspendLayout()
TabPage5.SuspendLayout()
GroupBox1.SuspendLayout()
TabPage6.SuspendLayout()
CType(PictureBox1, ComponentModel.ISupportInitialize).BeginInit()
CType(connected, ComponentModel.ISupportInitialize).BeginInit()
SuspendLayout()
'
' btnGet
'
btnGet.BackColor = Color.Gold
btnGet.FlatStyle = FlatStyle.Popup
btnGet.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
btnGet.Location = New Point(13, 468)
btnGet.Name = "btnGet"
btnGet.Size = New Size(45, 30)
btnGet.TabIndex = 0
btnGet.Text = "Fetch"
btnToolTip.SetToolTip(btnGet, "Fetch the required files from the OpenIPC Camera/VRX" & vbCrLf & "Save the IP address of the selected device")
btnGet.UseVisualStyleBackColor = False
btnGet.Visible = False
'
' txtIP
'
txtIP.BackColor = Color.FromArgb(CByte(64), CByte(64), CByte(64))
txtIP.BorderStyle = BorderStyle.FixedSingle
txtIP.Font = New Font("Arial", 9F, FontStyle.Bold)
txtIP.ForeColor = Color.White
txtIP.Location = New Point(76, 440)
txtIP.Name = "txtIP"
txtIP.Size = New Size(99, 21)
txtIP.TabIndex = 1
txtIP.Text = "192.168.0.1"
btnToolTip.SetToolTip(txtIP, "Type the OpenIPC Camera IP/NVR/Radxa Zero 3w(WFB-ng)" & vbCrLf & "in a correct format XXX.XXX.XXX.XXX")
'
' txtFrequency
'
txtFrequency.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFrequency.BorderStyle = BorderStyle.FixedSingle
txtFrequency.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtFrequency.Location = New Point(248, 20)
txtFrequency.Name = "txtFrequency"
txtFrequency.ReadOnly = True
txtFrequency.Size = New Size(325, 20)
txtFrequency.TabIndex = 3
'
' txtResolution
'
txtResolution.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtResolution.BorderStyle = BorderStyle.FixedSingle
txtResolution.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtResolution.Location = New Point(248, 20)
txtResolution.Name = "txtResolution"
txtResolution.ReadOnly = True
txtResolution.Size = New Size(191, 20)
txtResolution.TabIndex = 4
'
' txtFPS
'
txtFPS.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFPS.BorderStyle = BorderStyle.FixedSingle
txtFPS.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtFPS.Location = New Point(248, 49)
txtFPS.Name = "txtFPS"
txtFPS.ReadOnly = True
txtFPS.Size = New Size(191, 20)
txtFPS.TabIndex = 5
'
' txtEncode
'
txtEncode.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtEncode.BorderStyle = BorderStyle.FixedSingle
txtEncode.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtEncode.Location = New Point(248, 78)
txtEncode.Name = "txtEncode"
txtEncode.ReadOnly = True
txtEncode.Size = New Size(191, 20)
txtEncode.TabIndex = 6
'
' txtBitrate
'
txtBitrate.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtBitrate.BorderStyle = BorderStyle.FixedSingle
txtBitrate.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtBitrate.Location = New Point(248, 107)
txtBitrate.Name = "txtBitrate"
txtBitrate.ReadOnly = True
txtBitrate.Size = New Size(191, 20)
txtBitrate.TabIndex = 7
'
' txtExposure
'
txtExposure.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtExposure.BorderStyle = BorderStyle.FixedSingle
txtExposure.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtExposure.Location = New Point(248, 136)
txtExposure.Name = "txtExposure"
txtExposure.ReadOnly = True
txtExposure.Size = New Size(191, 20)
txtExposure.TabIndex = 8
'
' txtContrast
'
txtContrast.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtContrast.BorderStyle = BorderStyle.FixedSingle
txtContrast.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtContrast.Location = New Point(248, 165)
txtContrast.Name = "txtContrast"
txtContrast.ReadOnly = True
txtContrast.Size = New Size(191, 20)
txtContrast.TabIndex = 9
'
' txtHue
'
txtHue.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtHue.BorderStyle = BorderStyle.FixedSingle
txtHue.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtHue.Location = New Point(248, 194)
txtHue.Name = "txtHue"
txtHue.ReadOnly = True
txtHue.Size = New Size(191, 20)
txtHue.TabIndex = 10
'
' txtSaturation
'
txtSaturation.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtSaturation.BorderStyle = BorderStyle.FixedSingle
txtSaturation.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtSaturation.Location = New Point(248, 223)
txtSaturation.Name = "txtSaturation"
txtSaturation.ReadOnly = True
txtSaturation.Size = New Size(191, 20)
txtSaturation.TabIndex = 11
'
' txtLuminance
'
txtLuminance.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtLuminance.BorderStyle = BorderStyle.FixedSingle
txtLuminance.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtLuminance.Location = New Point(248, 252)
txtLuminance.Name = "txtLuminance"
txtLuminance.ReadOnly = True
txtLuminance.Size = New Size(191, 20)
txtLuminance.TabIndex = 12
'
' txtPower
'
txtPower.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtPower.BorderStyle = BorderStyle.FixedSingle
txtPower.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtPower.Location = New Point(248, 49)
txtPower.Name = "txtPower"
txtPower.ReadOnly = True
txtPower.Size = New Size(325, 20)
txtPower.TabIndex = 13
'
' txtSensor
'
txtSensor.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtSensor.BorderStyle = BorderStyle.FixedSingle
txtSensor.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtSensor.Location = New Point(19, 339)
txtSensor.Name = "txtSensor"
txtSensor.Size = New Size(420, 20)
txtSensor.TabIndex = 14
'
' txtFreq24
'
txtFreq24.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFreq24.BorderStyle = BorderStyle.FixedSingle
txtFreq24.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtFreq24.Location = New Point(248, 78)
txtFreq24.Name = "txtFreq24"
txtFreq24.ReadOnly = True
txtFreq24.Size = New Size(325, 20)
txtFreq24.TabIndex = 16
'
' txtMCS
'
txtMCS.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtMCS.BorderStyle = BorderStyle.FixedSingle
txtMCS.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtMCS.Location = New Point(248, 136)
txtMCS.Name = "txtMCS"
txtMCS.ReadOnly = True
txtMCS.Size = New Size(325, 20)
txtMCS.TabIndex = 15
'
' txtLDPC
'
txtLDPC.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtLDPC.BorderStyle = BorderStyle.FixedSingle
txtLDPC.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtLDPC.Location = New Point(248, 194)
txtLDPC.Name = "txtLDPC"
txtLDPC.ReadOnly = True
txtLDPC.Size = New Size(325, 20)
txtLDPC.TabIndex = 18
'
' txtSTBC
'
txtSTBC.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtSTBC.BorderStyle = BorderStyle.FixedSingle
txtSTBC.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtSTBC.Location = New Point(248, 165)
txtSTBC.Name = "txtSTBC"
txtSTBC.ReadOnly = True
txtSTBC.Size = New Size(325, 20)
txtSTBC.TabIndex = 17
'
' txtFECN
'
txtFECN.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFECN.BorderStyle = BorderStyle.FixedSingle
txtFECN.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtFECN.Location = New Point(248, 252)
txtFECN.Name = "txtFECN"
txtFECN.ReadOnly = True
txtFECN.Size = New Size(325, 20)
txtFECN.TabIndex = 20
'
' txtFECK
'
txtFECK.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFECK.BorderStyle = BorderStyle.FixedSingle
txtFECK.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtFECK.Location = New Point(248, 223)
txtFECK.Name = "txtFECK"
txtFECK.ReadOnly = True
txtFECK.Size = New Size(325, 20)
txtFECK.TabIndex = 19
'
' txtPower24
'
txtPower24.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtPower24.BorderStyle = BorderStyle.FixedSingle
txtPower24.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
txtPower24.Location = New Point(248, 107)
txtPower24.Name = "txtPower24"
txtPower24.ReadOnly = True
txtPower24.Size = New Size(325, 20)
txtPower24.TabIndex = 21
'
' TabControl1
'
TabControl1.Controls.Add(TabPage1)
TabControl1.Controls.Add(TabPage2)
TabControl1.Controls.Add(TabPage3)
TabControl1.Controls.Add(TabPage4)
TabControl1.Controls.Add(TabPage5)
TabControl1.Controls.Add(TabPage6)
TabControl1.DrawMode = TabDrawMode.OwnerDrawFixed
TabControl1.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
TabControl1.Location = New Point(12, 12)
TabControl1.Multiline = True
TabControl1.Name = "TabControl1"
TabControl1.SelectedIndex = 0
TabControl1.Size = New Size(643, 423)
TabControl1.SizeMode = TabSizeMode.Fixed
TabControl1.TabIndex = 22
'
' TabPage1
'
TabPage1.BackColor = Color.FromArgb(CByte(64), CByte(64), CByte(64))
TabPage1.Controls.Add(btnRestartWFB)
TabPage1.Controls.Add(ComboBox9)
TabPage1.Controls.Add(ComboBox8)
TabPage1.Controls.Add(ComboBox7)
TabPage1.Controls.Add(ComboBox6)
TabPage1.Controls.Add(ComboBox5)
TabPage1.Controls.Add(ComboBox4)
TabPage1.Controls.Add(ComboBox3)
TabPage1.Controls.Add(ComboBox2)
TabPage1.Controls.Add(ComboBox1)
TabPage1.Controls.Add(txtFrequency)
TabPage1.Controls.Add(txtPower24)
TabPage1.Controls.Add(txtPower)
TabPage1.Controls.Add(txtFECN)
TabPage1.Controls.Add(txtMCS)
TabPage1.Controls.Add(txtFECK)
TabPage1.Controls.Add(txtFreq24)
TabPage1.Controls.Add(txtLDPC)
TabPage1.Controls.Add(txtSTBC)
TabPage1.Location = New Point(4, 25)
TabPage1.Name = "TabPage1"
TabPage1.Padding = New Padding(3)
TabPage1.Size = New Size(635, 394)
TabPage1.TabIndex = 0
TabPage1.Text = "WFB Settings"
'
' btnRestartWFB
'
btnRestartWFB.BackColor = Color.Gold
btnRestartWFB.FlatStyle = FlatStyle.Popup
btnRestartWFB.Font = New Font("Arial", 8.25F, FontStyle.Bold)
btnRestartWFB.Location = New Point(201, 365)
btnRestartWFB.Name = "btnRestartWFB"
btnRestartWFB.Size = New Size(111, 23)
btnRestartWFB.TabIndex = 45
btnRestartWFB.Text = "Restart WFB"
btnToolTip.SetToolTip(btnRestartWFB, "Restart the WFB on the OpenIPC camera" & vbCrLf)
btnRestartWFB.UseVisualStyleBackColor = False
'
' ComboBox9
'
ComboBox9.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox9.FlatStyle = FlatStyle.Popup
ComboBox9.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox9.FormattingEnabled = True
ComboBox9.Location = New Point(19, 252)
ComboBox9.Name = "ComboBox9"
ComboBox9.Size = New Size(214, 22)
ComboBox9.TabIndex = 34
'
' ComboBox8
'
ComboBox8.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox8.FlatStyle = FlatStyle.Popup
ComboBox8.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox8.FormattingEnabled = True
ComboBox8.Location = New Point(19, 223)
ComboBox8.Name = "ComboBox8"
ComboBox8.Size = New Size(214, 22)
ComboBox8.TabIndex = 33
'
' ComboBox7
'
ComboBox7.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox7.FlatStyle = FlatStyle.Popup
ComboBox7.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox7.FormattingEnabled = True
ComboBox7.Location = New Point(19, 194)
ComboBox7.Name = "ComboBox7"
ComboBox7.Size = New Size(214, 22)
ComboBox7.TabIndex = 32
'
' ComboBox6
'
ComboBox6.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox6.FlatStyle = FlatStyle.Popup
ComboBox6.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox6.FormattingEnabled = True
ComboBox6.Location = New Point(19, 165)
ComboBox6.Name = "ComboBox6"
ComboBox6.Size = New Size(214, 22)
ComboBox6.TabIndex = 31
'
' ComboBox5
'
ComboBox5.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox5.FlatStyle = FlatStyle.Popup
ComboBox5.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox5.FormattingEnabled = True
ComboBox5.Location = New Point(19, 136)
ComboBox5.Name = "ComboBox5"
ComboBox5.Size = New Size(214, 22)
ComboBox5.TabIndex = 30
'
' ComboBox4
'
ComboBox4.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox4.FlatStyle = FlatStyle.Popup
ComboBox4.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox4.FormattingEnabled = True
ComboBox4.Location = New Point(19, 106)
ComboBox4.Name = "ComboBox4"
ComboBox4.Size = New Size(214, 22)
ComboBox4.TabIndex = 29
'
' ComboBox3
'
ComboBox3.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox3.FlatStyle = FlatStyle.Popup
ComboBox3.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox3.FormattingEnabled = True
ComboBox3.Location = New Point(19, 77)
ComboBox3.Name = "ComboBox3"
ComboBox3.Size = New Size(214, 22)
ComboBox3.TabIndex = 28
'
' ComboBox2
'
ComboBox2.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox2.FlatStyle = FlatStyle.Popup
ComboBox2.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox2.FormattingEnabled = True
ComboBox2.Location = New Point(19, 48)
ComboBox2.Name = "ComboBox2"
ComboBox2.Size = New Size(214, 22)
ComboBox2.TabIndex = 27
'
' ComboBox1
'
ComboBox1.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
ComboBox1.FlatStyle = FlatStyle.Popup
ComboBox1.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
ComboBox1.FormattingEnabled = True
ComboBox1.Location = New Point(19, 20)
ComboBox1.Name = "ComboBox1"
ComboBox1.Size = New Size(214, 22)
ComboBox1.TabIndex = 26
'
' TabPage2
'
TabPage2.BackColor = Color.FromArgb(CByte(64), CByte(64), CByte(64))
TabPage2.Controls.Add(cmbMirror)
TabPage2.Controls.Add(cmbFlip)
TabPage2.Controls.Add(txtMirror)
TabPage2.Controls.Add(txtFlip)
TabPage2.Controls.Add(Label6)
TabPage2.Controls.Add(btnRestartMajestic)
TabPage2.Controls.Add(cmbLuminance)
TabPage2.Controls.Add(cmbSaturation)
TabPage2.Controls.Add(cmbHue)
TabPage2.Controls.Add(cmbContrast)
TabPage2.Controls.Add(cmbExposure)
TabPage2.Controls.Add(cmbBitrate)
TabPage2.Controls.Add(cmbCodec)
TabPage2.Controls.Add(cmbFPS)
TabPage2.Controls.Add(cmbResolution)
TabPage2.Controls.Add(txtResolution)
TabPage2.Controls.Add(txtSensor)
TabPage2.Controls.Add(txtFPS)
TabPage2.Controls.Add(txtLuminance)
TabPage2.Controls.Add(txtEncode)
TabPage2.Controls.Add(txtSaturation)
TabPage2.Controls.Add(txtBitrate)
TabPage2.Controls.Add(txtHue)
TabPage2.Controls.Add(txtExposure)
TabPage2.Controls.Add(txtContrast)
TabPage2.Location = New Point(4, 25)
TabPage2.Name = "TabPage2"
TabPage2.Padding = New Padding(3)
TabPage2.Size = New Size(635, 394)
TabPage2.TabIndex = 1
TabPage2.Text = "Camera Settings"
'
' cmbMirror
'
cmbMirror.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbMirror.FlatStyle = FlatStyle.Popup
cmbMirror.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbMirror.FormattingEnabled = True
cmbMirror.Location = New Point(19, 309)
cmbMirror.Name = "cmbMirror"
cmbMirror.Size = New Size(214, 22)
cmbMirror.TabIndex = 59
'
' cmbFlip
'
cmbFlip.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbFlip.FlatStyle = FlatStyle.Popup
cmbFlip.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbFlip.FormattingEnabled = True
cmbFlip.Location = New Point(19, 280)
cmbFlip.Name = "cmbFlip"
cmbFlip.Size = New Size(214, 22)
cmbFlip.TabIndex = 58
'
' txtMirror
'
txtMirror.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtMirror.BorderStyle = BorderStyle.FixedSingle
txtMirror.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtMirror.Location = New Point(248, 309)
txtMirror.Name = "txtMirror"
txtMirror.ReadOnly = True
txtMirror.Size = New Size(191, 20)
txtMirror.TabIndex = 57
'
' txtFlip
'
txtFlip.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtFlip.BorderStyle = BorderStyle.FixedSingle
txtFlip.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtFlip.Location = New Point(248, 280)
txtFlip.Name = "txtFlip"
txtFlip.ReadOnly = True
txtFlip.Size = New Size(191, 20)
txtFlip.TabIndex = 56
'
' Label6
'
Label6.AutoSize = True
Label6.Font = New Font("Arial", 9F, FontStyle.Bold)
Label6.ForeColor = Color.White
Label6.Location = New Point(445, 339)
Label6.Name = "Label6"
Label6.Size = New Size(187, 15)
Label6.TabIndex = 45
Label6.Text = "Be carefull what you enter here."
'
' btnRestartMajestic
'
btnRestartMajestic.BackColor = Color.Gold
btnRestartMajestic.FlatStyle = FlatStyle.Popup
btnRestartMajestic.Location = New Point(201, 365)
btnRestartMajestic.Name = "btnRestartMajestic"
btnRestartMajestic.Size = New Size(111, 23)
btnRestartMajestic.TabIndex = 44
btnRestartMajestic.Text = "Restart Majestic"
btnToolTip.SetToolTip(btnRestartMajestic, "Restarts the Majestic on the OpenIPC camera" & vbCrLf)
btnRestartMajestic.UseVisualStyleBackColor = False
'
' cmbLuminance
'
cmbLuminance.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbLuminance.FlatStyle = FlatStyle.Popup
cmbLuminance.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbLuminance.FormattingEnabled = True
cmbLuminance.Location = New Point(19, 252)
cmbLuminance.Name = "cmbLuminance"
cmbLuminance.Size = New Size(214, 22)
cmbLuminance.TabIndex = 43
'
' cmbSaturation
'
cmbSaturation.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbSaturation.FlatStyle = FlatStyle.Popup
cmbSaturation.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbSaturation.FormattingEnabled = True
cmbSaturation.Location = New Point(19, 223)
cmbSaturation.Name = "cmbSaturation"
cmbSaturation.Size = New Size(214, 22)
cmbSaturation.TabIndex = 42
'
' cmbHue
'
cmbHue.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbHue.FlatStyle = FlatStyle.Popup
cmbHue.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbHue.FormattingEnabled = True
cmbHue.Location = New Point(19, 194)
cmbHue.Name = "cmbHue"
cmbHue.Size = New Size(214, 22)
cmbHue.TabIndex = 41
'
' cmbContrast
'
cmbContrast.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbContrast.FlatStyle = FlatStyle.Popup
cmbContrast.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbContrast.FormattingEnabled = True
cmbContrast.Location = New Point(19, 165)
cmbContrast.Name = "cmbContrast"
cmbContrast.Size = New Size(214, 22)
cmbContrast.TabIndex = 40
'
' cmbExposure
'
cmbExposure.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbExposure.FlatStyle = FlatStyle.Popup
cmbExposure.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbExposure.FormattingEnabled = True
cmbExposure.Location = New Point(19, 136)
cmbExposure.Name = "cmbExposure"
cmbExposure.Size = New Size(214, 22)
cmbExposure.TabIndex = 39
'
' cmbBitrate
'
cmbBitrate.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbBitrate.FlatStyle = FlatStyle.Popup
cmbBitrate.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbBitrate.FormattingEnabled = True
cmbBitrate.Location = New Point(19, 106)
cmbBitrate.Name = "cmbBitrate"
cmbBitrate.Size = New Size(214, 22)
cmbBitrate.TabIndex = 38
'
' cmbCodec
'
cmbCodec.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbCodec.FlatStyle = FlatStyle.Popup
cmbCodec.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbCodec.FormattingEnabled = True
cmbCodec.Location = New Point(19, 77)
cmbCodec.Name = "cmbCodec"
cmbCodec.Size = New Size(214, 22)
cmbCodec.TabIndex = 37
'
' cmbFPS
'
cmbFPS.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbFPS.FlatStyle = FlatStyle.Popup
cmbFPS.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbFPS.FormattingEnabled = True
cmbFPS.Location = New Point(19, 48)
cmbFPS.Name = "cmbFPS"
cmbFPS.Size = New Size(214, 22)
cmbFPS.TabIndex = 36
'
' cmbResolution
'
cmbResolution.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbResolution.FlatStyle = FlatStyle.Popup
cmbResolution.ForeColor = Color.FromArgb(CByte(224), CByte(224), CByte(224))
cmbResolution.FormattingEnabled = True
cmbResolution.Location = New Point(19, 20)
cmbResolution.Name = "cmbResolution"
cmbResolution.Size = New Size(214, 22)
cmbResolution.TabIndex = 35
'
' TabPage3
'
TabPage3.BackColor = Color.FromArgb(CByte(64), CByte(64), CByte(64))
TabPage3.Controls.Add(btnMSPExtra)
TabPage3.Controls.Add(rBtnRECOFF)
TabPage3.Controls.Add(rBtnRECON)
TabPage3.Controls.Add(btnOnboardREC)
TabPage3.Controls.Add(btnDualOSD)
TabPage3.Controls.Add(btnFontsINAV)
TabPage3.Controls.Add(btnMSP)
TabPage3.Controls.Add(btnExtra)
TabPage3.Controls.Add(cmbRC_Channel)
TabPage3.Controls.Add(txtRC_CHANNEL)
TabPage3.Controls.Add(cmbAggregate)
TabPage3.Controls.Add(txtAggregate)
TabPage3.Controls.Add(btnUART0OFF)
TabPage3.Controls.Add(btnUART0)
TabPage3.Controls.Add(cmbMCSTLM)
TabPage3.Controls.Add(cmbRouter)
TabPage3.Controls.Add(cmbBaud)
TabPage3.Controls.Add(cmbSerial)
TabPage3.Controls.Add(txtMCSTLM)
TabPage3.Controls.Add(txtRouter)
TabPage3.Controls.Add(txtBaud)
TabPage3.Controls.Add(txtSerial)
TabPage3.Location = New Point(4, 25)
TabPage3.Name = "TabPage3"
TabPage3.Padding = New Padding(3)
TabPage3.RightToLeft = RightToLeft.No
TabPage3.Size = New Size(635, 394)
TabPage3.TabIndex = 2
TabPage3.Text = "Telemetry"
'
' rBtnRECOFF
'
rBtnRECOFF.AutoSize = True
rBtnRECOFF.Checked = True
rBtnRECOFF.ForeColor = Color.White
rBtnRECOFF.Location = New Point(547, 220)
rBtnRECOFF.Name = "rBtnRECOFF"
rBtnRECOFF.Size = New Size(45, 18)
rBtnRECOFF.TabIndex = 65
rBtnRECOFF.TabStop = True
rBtnRECOFF.Text = "OFF"
btnToolTip.SetToolTip(rBtnRECOFF, "Turn OFF the onboard REC")
rBtnRECOFF.UseVisualStyleBackColor = True
'
' rBtnRECON
'
rBtnRECON.AutoSize = True
rBtnRECON.ForeColor = Color.White
rBtnRECON.Location = New Point(547, 205)
rBtnRECON.Name = "rBtnRECON"
rBtnRECON.Size = New Size(40, 18)
rBtnRECON.TabIndex = 64
rBtnRECON.Text = "ON"
btnToolTip.SetToolTip(rBtnRECON, "Turn ON the onboard REC")
rBtnRECON.UseVisualStyleBackColor = True
'
' btnOnboardREC
'
btnOnboardREC.BackColor = Color.Gold
btnOnboardREC.FlatStyle = FlatStyle.Popup
btnOnboardREC.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
btnOnboardREC.Location = New Point(454, 207)
btnOnboardREC.Name = "btnOnboardREC"
btnOnboardREC.Size = New Size(87, 30)
btnOnboardREC.TabIndex = 63
btnOnboardREC.Text = "Onboard REC"
btnToolTip.SetToolTip(btnOnboardREC, "Turns ON or OFF the Onboard Recording" & vbCrLf & vbCrLf & "Must select ON or OFF option first")
btnOnboardREC.UseVisualStyleBackColor = False
'
' btnDualOSD
'
btnDualOSD.BackColor = Color.Gold
btnDualOSD.FlatStyle = FlatStyle.Popup
btnDualOSD.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
btnDualOSD.Location = New Point(454, 244)
btnDualOSD.Name = "btnDualOSD"
btnDualOSD.Size = New Size(116, 30)
btnDualOSD.TabIndex = 62
btnDualOSD.Text = "Dual OSD"
btnToolTip.SetToolTip(btnDualOSD, "Enables the Mavlink telemetry" & vbCrLf & "while keeping the MSPOSD" & vbCrLf & "on the OpenIPC camera for Dual OSD" & vbCrLf & vbCrLf & "MUST first enable the MSPOSD")
btnDualOSD.UseVisualStyleBackColor = False
btnDualOSD.Visible = False
'
' btnFontsINAV
'
btnFontsINAV.BackColor = Color.Gold
btnFontsINAV.FlatStyle = FlatStyle.Popup
btnFontsINAV.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
btnFontsINAV.Location = New Point(454, 143)
btnFontsINAV.Name = "btnFontsINAV"
btnFontsINAV.Size = New Size(116, 30)
btnFontsINAV.TabIndex = 59
btnFontsINAV.Text = "Upload INAV Fonts"
btnToolTip.SetToolTip(btnFontsINAV, "Upload the fonts for INAV to the OpenIPC camera")
btnFontsINAV.UseVisualStyleBackColor = False
'
' btnMSP
'
btnMSP.BackColor = Color.Gold
btnMSP.FlatStyle = FlatStyle.Popup
btnMSP.Font = New Font("Arial", 8.25F, FontStyle.Bold, GraphicsUnit.Point, CByte(0))
btnMSP.Location = New Point(454, 107)
btnMSP.Name = "btnMSP"
btnMSP.Size = New Size(116, 30)
btnMSP.TabIndex = 56
btnMSP.Text = "Upload MSPOSD"
btnToolTip.SetToolTip(btnMSP, resources.GetString("btnMSP.ToolTip"))
btnMSP.UseVisualStyleBackColor = False
'
' btnExtra
'
btnExtra.BackColor = Color.Gold
btnExtra.FlatStyle = FlatStyle.Popup
btnExtra.Font = New Font("Arial", 7F, FontStyle.Bold)
btnExtra.Location = New Point(454, 79)
btnExtra.Name = "btnExtra"
btnExtra.Size = New Size(116, 22)
btnExtra.TabIndex = 47
btnExtra.Text = "Add MAVLINK EXTRA"
btnToolTip.SetToolTip(btnExtra, "1) Add OSD SOC temperature" & vbCrLf & "2) Set low delay for the channels.sh switches")
btnExtra.UseVisualStyleBackColor = False
'
' cmbRC_Channel
'
cmbRC_Channel.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbRC_Channel.FlatStyle = FlatStyle.Popup
cmbRC_Channel.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
cmbRC_Channel.FormattingEnabled = True
cmbRC_Channel.Location = New Point(19, 163)
cmbRC_Channel.Name = "cmbRC_Channel"
cmbRC_Channel.Size = New Size(214, 22)
cmbRC_Channel.TabIndex = 46
'
' txtRC_CHANNEL
'
txtRC_CHANNEL.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtRC_CHANNEL.BorderStyle = BorderStyle.FixedSingle
txtRC_CHANNEL.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtRC_CHANNEL.Location = New Point(248, 163)
txtRC_CHANNEL.Name = "txtRC_CHANNEL"
txtRC_CHANNEL.ReadOnly = True
txtRC_CHANNEL.Size = New Size(191, 20)
txtRC_CHANNEL.TabIndex = 45
'
' cmbAggregate
'
cmbAggregate.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
cmbAggregate.FlatStyle = FlatStyle.Popup
cmbAggregate.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
cmbAggregate.FormattingEnabled = True
cmbAggregate.Location = New Point(19, 135)
cmbAggregate.Name = "cmbAggregate"
cmbAggregate.Size = New Size(214, 22)
cmbAggregate.TabIndex = 44
'
' txtAggregate
'
txtAggregate.BackColor = Color.FromArgb(CByte(45), CByte(45), CByte(45))
txtAggregate.BorderStyle = BorderStyle.FixedSingle
txtAggregate.ForeColor = Color.FromArgb(CByte(244), CByte(244), CByte(244))
txtAggregate.Location = New Point(248, 135)
txtAggregate.Name = "txtAggregate"
txtAggregate.ReadOnly = True
txtAggregate.Size = New Size(191, 20)
txtAggregate.TabIndex = 43
'
' btnUART0OFF
'
btnUART0OFF.BackColor = Color.Gold
btnUART0OFF.FlatStyle = FlatStyle.Popup
btnUART0OFF.Location = New Point(454, 49)
btnUART0OFF.Name = "btnUART0OFF"
btnUART0OFF.Size = New Size(116, 22)
btnUART0OFF.TabIndex = 42
btnUART0OFF.Text = "Disable UART0"
btnToolTip.SetToolTip(btnUART0OFF, "Disable UART0 serial port" & vbCrLf & "Must also be selected to the Serial Selector")
btnUART0OFF.UseVisualStyleBackColor = False
'
' btnUART0
'
btnUART0.BackColor = Color.Gold
btnUART0.FlatStyle = FlatStyle.Popup
btnUART0.Location = New Point(454, 20)
btnUART0.Name = "btnUART0"
btnUART0.Size = New Size(116, 23)