-
Notifications
You must be signed in to change notification settings - Fork 3
/
Unit1.dfm
229 lines (229 loc) · 4.61 KB
/
Unit1.dfm
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
object Form1: TForm1
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'RTL8710 Dumper'
ClientHeight = 731
ClientWidth = 699
Color = clBtnFace
Font.Charset = GB2312_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Fixedsys'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 16
object btnRead: TButton
Left = 8
Top = 688
Width = 177
Height = 25
Caption = 'Read'
TabOrder = 0
OnClick = btnReadClick
end
object HexFirmware: TMPHexEditor
Left = 8
Top = 8
Width = 681
Height = 329
Cursor = crIBeam
Font.Charset = GB2312_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Fixedsys'
Font.Style = []
ParentFont = False
TabOrder = 1
BytesPerRow = 16
BytesPerColumn = 1
Translation = tkASCII
OffsetFormat = '8!10:0x|'
Colors.Background = clWindow
Colors.ChangedBackground = clWindow
Colors.ChangedText = clRed
Colors.CursorFrame = clNavy
Colors.Offset = clBlack
Colors.OddColumn = clBlue
Colors.EvenColumn = clBlack
Colors.CurrentOffsetBackground = clBtnShadow
Colors.OffsetBackground = clBtnFace
Colors.CurrentOffset = clBlack
Colors.Grid = clBtnFace
Colors.NonFocusCursorFrame = clAqua
Colors.ActiveFieldBackground = clWindow
FocusFrame = True
DrawGridLines = True
ReadOnlyView = True
Version = 'october 7th, 2010; ?markus stephany, http://launchpad.net/dcr'
DrawGutterGradient = False
ShowRuler = True
end
object btnFlashSize: TRadioGroup
Left = 8
Top = 460
Width = 681
Height = 49
Caption = ' Flash Size '
Columns = 8
ItemIndex = 0
Items.Strings = (
'1MB'
'2MB'
'4M'
'8M'
'16M'
'32M'
'64M'
'128M')
TabOrder = 2
OnClick = btnFlashSizeClick
end
object btnSave: TButton
Left = 260
Top = 688
Width = 177
Height = 25
Caption = 'Save ...'
TabOrder = 3
OnClick = btnSaveClick
end
object btnClose: TButton
Left = 512
Top = 688
Width = 177
Height = 25
Caption = 'Close'
TabOrder = 4
OnClick = btnCloseClick
end
object ProgressBar1: TProgressBar
Left = 8
Top = 356
Width = 681
Height = 25
TabOrder = 5
end
object btnMemory: TRadioGroup
Left = 8
Top = 400
Width = 681
Height = 49
Caption = ' Memory '
Columns = 4
ItemIndex = 0
Items.Strings = (
'ROM'
'RAM'
'Flash'
'Custom ')
TabOrder = 6
OnClick = btnMemoryClick
end
object GroupBox1: TGroupBox
Left = 8
Top = 600
Width = 681
Height = 69
Caption = ' JLink Setting '
TabOrder = 7
object Label1: TLabel
Left = 16
Top = 29
Width = 120
Height = 16
Caption = 'JLink Interface'
end
object Label2: TLabel
Left = 360
Top = 29
Width = 88
Height = 16
Caption = 'JLink Speed'
end
object cbInterface: TComboBox
Left = 156
Top = 25
Width = 160
Height = 24
Style = csDropDownList
ItemIndex = 1
TabOrder = 0
Text = 'SWD'
Items.Strings = (
'JTAG'
'SWD')
end
object cbSpeed: TComboBox
Left = 468
Top = 25
Width = 160
Height = 24
Style = csDropDownList
ItemIndex = 6
TabOrder = 1
Text = '12000 KHz'
Items.Strings = (
'1000 KHz'
'2000 KHz'
'4000 KHz'
'6000 KHz'
'8000 KHz'
'10000 KHz'
'12000 KHz')
end
end
object GroupBox2: TGroupBox
Left = 8
Top = 520
Width = 681
Height = 68
Caption = ' Custom '
TabOrder = 8
object Label3: TLabel
Left = 14
Top = 33
Width = 104
Height = 16
Caption = 'Address (HEX)'
end
object Label4: TLabel
Left = 368
Top = 33
Width = 80
Height = 16
Caption = 'Size (HEX)'
end
object edtAddress: TEdit
Left = 156
Top = 29
Width = 160
Height = 24
Enabled = False
MaxLength = 8
TabOrder = 0
OnExit = edtAddressExit
end
object edtSize: TEdit
Left = 468
Top = 29
Width = 160
Height = 24
Enabled = False
MaxLength = 8
TabOrder = 1
OnExit = edtSizeExit
end
end
object DlgSave: TSaveDialog
Filter = 'Binary Files (*.bin)|*.bin'
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
Left = 40
Top = 108
end
end