-
Notifications
You must be signed in to change notification settings - Fork 0
/
FTest.dfm
226 lines (226 loc) · 4.31 KB
/
FTest.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
object Test: TTest
Left = 509
Top = 218
BorderStyle = bsSingle
Caption = ' Dive Test'
ClientHeight = 206
ClientWidth = 330
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsMDIChild
OldCreateOrder = False
Position = poDefault
Visible = True
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object FlashMem: TPaintBox
Left = 8
Top = 8
Width = 313
Height = 20
Color = clBtnFace
ParentColor = False
end
object btWriteMany: TRzButton
Left = 248
Top = 48
Caption = 'Write many'
HotTrack = True
TabOrder = 0
OnClick = btWriteManyClick
end
object FlashStatus: TGroupBox
Left = 8
Top = 40
Width = 153
Height = 97
Caption = ' Flash Memory Status '
TabOrder = 1
object txFreeBlocks: TLabel
Left = 8
Top = 32
Width = 76
Height = 13
AutoSize = False
Caption = 'Free blocks:'
end
object txUsedBlocks: TLabel
Left = 8
Top = 48
Width = 76
Height = 13
AutoSize = False
Caption = 'Used blocks:'
end
object txTotalBlocks: TLabel
Left = 8
Top = 16
Width = 76
Height = 13
AutoSize = False
Caption = 'Total blocks:'
end
object lbTotalBlocks: TLabel
Left = 88
Top = 16
Width = 6
Height = 13
Caption = '0'
end
object lbFreeBlocks: TLabel
Left = 88
Top = 32
Width = 6
Height = 13
Caption = '0'
end
object lbUsedBlocks: TLabel
Left = 88
Top = 48
Width = 6
Height = 13
Caption = '0'
end
object txWriteAddr: TLabel
Left = 8
Top = 64
Width = 76
Height = 13
AutoSize = False
Caption = 'Write address:'
end
object lbWriteAddr: TLabel
Left = 88
Top = 64
Width = 6
Height = 13
Caption = '0'
end
object txWriteSector: TLabel
Left = 8
Top = 80
Width = 76
Height = 13
AutoSize = False
Caption = 'Write sector:'
end
object lbWriteSector: TLabel
Left = 88
Top = 80
Width = 6
Height = 13
Caption = '0'
end
end
object btWriteOnce: TRzButton
Left = 248
Top = 80
Caption = 'Write once'
HotTrack = True
TabOrder = 2
OnClick = btWriteOnceClick
end
object btWriteLog: TRzButton
Left = 248
Top = 112
Caption = 'Write Log'
HotTrack = True
TabOrder = 3
OnClick = btWriteLogClick
end
object btClearSector: TRzButton
Left = 168
Top = 80
Caption = 'Clear sector'
HotTrack = True
TabOrder = 4
OnClick = btClearSectorClick
end
object seSectors: TRzSpinEdit
Left = 168
Top = 48
Width = 47
Height = 21
Max = 100.000000000000000000
AutoSelect = False
AutoSize = False
FrameHotTrack = True
FrameVisible = True
TabOrder = 5
end
object btClearFlash: TRzButton
Left = 168
Top = 112
Caption = 'Clear flash'
HotTrack = True
TabOrder = 6
OnClick = btClearFlashClick
end
object btChangeUnit: TRzButton
Left = 168
Top = 144
Caption = 'Change unit'
HotTrack = True
TabOrder = 7
OnClick = btChangeUnitClick
end
object btTest: TRzButton
Left = 8
Top = 144
Caption = 'Test'
HotTrack = True
TabOrder = 8
OnClick = btTestClick
end
object RzButton1: TRzButton
Left = 8
Top = 176
Caption = 'Assertion'
HotTrack = True
TabOrder = 9
OnClick = RzButton1Click
end
object RzButton2: TRzButton
Left = 88
Top = 176
Caption = 'Exception'
HotTrack = True
TabOrder = 10
OnClick = RzButton2Click
end
object RzButton3: TRzButton
Left = 168
Top = 176
Caption = 'Violation'
HotTrack = True
TabOrder = 11
OnClick = RzButton3Click
end
object RzButton4: TRzButton
Left = 248
Top = 176
Caption = 'Division 0'
HotTrack = True
TabOrder = 12
OnClick = RzButton4Click
end
object RzButton5: TRzButton
Left = 248
Top = 144
Caption = 'Change gas'
HotTrack = True
TabOrder = 13
OnClick = RzButton5Click
end
object TestLoop: TTimer
OnTimer = TestLoopTimer
Left = 216
Top = 32
end
end