212
Jetter AG
10 Programming
Sample program - Runtime registers
Measure how much time it takes to store variable values to a file.
Before storing the values, set register 201000 to 0.
Once the values have been stored, you can see from this register how much
time it took to store the values [in milliseconds].
The sample program has been tested for compliance with the following
software versions:
JetSym version 5.1
HMI JVM-407B, OS version 4.01
For more information on programming by STX, please turn to the online help
in JetSym.
Var
DataArray:
Array
[
2000
]
Of
Int;
File1: File;
WriteTime: Int;
WriteIt: Bool;
MilliSec: Int
At
%VL
201000
;
End_Var
;
Task
WriteToFile
Autorun
Loop
// Resetting the start flag
WriteIt :=
False
;
// Waiting for user to set start flag
When
WriteIt
Continue
;
// Opening the file in write mode
// If there is no file available, a new file
// is created
If
FileOpen(File1,
'Test.dat'
, fWrite)
Then
// Setting the application time base register to zero
MilliSec :=
0
;
// Writing the data array into the file
FileWrite(File1, DataArray,
SizeOf
(DataArray));
// Registering the run time
WriteTime := MilliSec;
FileClose(File1);
// Displaying the run time
Trace(StrFormat(
'Time : %d [ms]$n'
, WriteTime));
Task
Solution
Software versions
JetSym STX program
Содержание JVM-407B-HMI
Страница 1: ...User Manual JVM 407B HMI 60879892 We automate your success...
Страница 14: ......
Страница 26: ...26 Jetter AG 2 Product description and design Rear view...
Страница 34: ......
Страница 80: ......
Страница 98: ...98 Jetter AG 5 Initial commissioning Initial commissioning in JetViewSoft see page 86 Related topics...
Страница 106: ......
Страница 144: ......
Страница 168: ......
Страница 178: ......
Страница 182: ......
Страница 196: ...196 Jetter AG 10 Programming If Merker1 Then Inc Status_LEDs Delay T 100ms End_If End_Loop End_Task...
Страница 220: ...220 Jetter AG 10 Programming Topic Page Programming 221 Registers 233 Sample programs 238 Contents...
Страница 258: ......
Страница 268: ......
Страница 274: ......
Страница 294: ...294 Jetter AG Appendix Rear view...
Страница 299: ......