-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAxoInspectorData.st
More file actions
56 lines (41 loc) · 1.55 KB
/
AxoInspectorData.st
File metadata and controls
56 lines (41 loc) · 1.55 KB
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
NAMESPACE AXOpen.Inspectors
///<summary>
/// Data subjected to each inspector instance.
///</summary>
{S7.extern=ReadWrite}
{#ix-prop:public string Units}
CLASS AxoInspectorData
VAR PUBLIC
//<CommonInspectorDataDeclaration>
//timestamp of inspection
{#ix-set:AttributeName = "<#TimeStamp#>"}
Timestamp: LDATE_AND_TIME;
//stabilization time, inspection must be success for this period of time
{#ix-set:AttributeName = "<#Stab.Time#>"}
PassTime : TIME;
//timeout, after which inspection fails
{#ix-set:AttributeName = "<#Timeout#>"}
FailTime : TIME;
//result of inspection
{#ix-set:AttributeName = "<#Result#>"}
Result : eInspectorResult;
//inspection will be performed, however result will be omitted in overall result
{#ix-set:AttributeName = "<#Excluded#>"}
IsExcluded: BOOL;
//inspection will be skipped
{#ix-set:AttributeName = "<#Bypass#>"}
IsByPassed : BOOL;
//maximum number of retries of inspection
{#ix-set:AttributeName = "<#Re-tries#>"}
NumberOfAllowedRetries : UINT;
//actual number of retries
{#ix-set:AttributeName = "<#Attempts#>"}
RetryAttemptsCount : UINT;
{#ix-set:AttributeName = "<#ErrorCode#>"}
ErrorCode : STRING;
{#ix-set:AttributeName = "<#Failure Description#>"}
Failure : STRING;
//</CommonInspectorDataDeclaration>
END_VAR
END_CLASS
END_NAMESPACE