forked from paulscherrerinstitute/require
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoduleversion.template
More file actions
43 lines (39 loc) · 987 Bytes
/
moduleversion.template
File metadata and controls
43 lines (39 loc) · 987 Bytes
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
record (waveform, "$(IOC):MODULES")
{
field (DESC, "List of loaded modules")
field (FTVL, "STRING")
field (NELM, "$(MODULE_COUNT)")
field (PINI, "YES")
field (ASG, "READONLY")
}
record (waveform, "$(IOC):VERSIONS")
{
field (DESC, "Versions of loaded modules")
field (FTVL, "STRING")
field (NELM, "$(MODULE_COUNT)")
field (PINI, "YES")
field (ASG, "READONLY")
}
record (waveform, "$(IOC):MOD_VER")
{
field (DESC, "List of loaded modules")
field (FTVL, "CHAR")
field (NELM, "$(BUFFER_SIZE)")
field (PINI, "YES")
field (ASG, "READONLY")
}
record (stringin, "$(IOC):$(MODULE)_VERS")
{
field (DESC, "Module $(MODULE) version")
field (VAL, "$(VERSION)")
field (PINI, "YES")
field (ASG, "READONLY")
}
record (waveform, "$(IOC):$(MODULE)_ORIGIN")
{
field (DESC, "Module $(MODULE) origin")
field (FTVL, "CHAR")
field (NELM, "$(ORIGIN_SIZE=1)")
field (PINI, "YES")
field (ASG, "READONLY")
}