-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.db
More file actions
83 lines (72 loc) · 2.32 KB
/
example.db
File metadata and controls
83 lines (72 loc) · 2.32 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
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
record(ai, "$(P)$(R)Int32Input") {
field(DESC, "Analog Input")
field(DTYP, "asynInt32")
field(SCAN, "I/O Intr")
field(INP, "@asyn($(PORT)) FLAT:INT test/inttopic")
}
record(ao, "$(P)$(R)Int32Output") {
field(DESC, "Analog Out")
field(DTYP, "asynInt32")
field(OUT, "@asyn($(PORT)) FLAT:INT test/inttopic")
}
record(ai, "$(P)$(R)Float64Input" ) {
field(DESC, "Float64 Input")
field(DTYP, "asynFloat64")
field(SCAN, "I/O Intr")
field(INP, "@asyn($(PORT)) FLAT:FLOAT test/floattopic")
}
record(ao, "$(P)$(R)Float64Output") {
field(DESC, "Float64 Output")
field(DTYP, "asynFloat64")
field(OUT, "@asyn($(PORT)) FLAT:FLOAT test/floattopic")
}
record(stringin, "$(P)$(R)StringInput") {
field(DESC, "Octet Input")
field(DTYP, "asynOctetRead")
field(SCAN, "I/O Intr")
field(INP, "@asyn($(PORT)) FLAT:STRING test/stringtopic")
}
record(stringout, "$(P)$(R)StringOutput") {
field(DESC, "Octet Output")
field(DTYP, "asynOctetWrite")
field(OUT, "@asyn($(PORT)) FLAT:STRING test/stringtopic")
}
record(mbbiDirect, "$(P)$(R)Uint32DigitalInput") {
field(DESC, "Bitmasked UInt32 Input")
field(DTYP, "asynUInt32Digital")
field(SCAN, "I/O Intr")
field(INP, "@asynMask($(PORT), 0, 0xF) FLAT:DIGITAL test/digitaltopic")
}
record(mbboDirect, "$(P)$(R)Uint32DigitalOutput") {
field(DESC, "Bitmasked UInt32 Output")
field(DTYP, "asynUInt32Digital")
field(OUT, "@asynMask($(PORT), 0, 0xF) FLAT:DIGITAL test/digitaltopic")
}
record(aai, "$(P)$(R)Int32ArrayInput") {
field(DESC, "Int32 Array Input")
field(DTYP, "asynInt32ArrayIn")
field(SCAN, "I/O Intr")
field(FTVL, "DOUBLE")
field(NELM, "10")
field(INP, "@asyn($(PORT)) FLAT:INTARRAY test/intarraytopic")
}
record(aao, "$(P)$(R)Int32ArrayOutput") {
field(DESC, "Int32 Array Output")
field(DTYP, "asynInt32ArrayOut")
field(FTVL, "DOUBLE")
field(NELM, "10")
field(OUT, "@asyn($(PORT)) FLAT:INTARRAY test/intarraytopic")
}
record(aai, "$(P)$(R)Float64ArrayInput") {
field(DESC, "Float64 Array Input")
field(DTYP, "asynFloat64ArrayIn")
field(SCAN, "I/O Intr")
field(INP, "@asyn($(PORT)) FLAT:FLOATARRAY test/floatarraytopic")
}
record(aao, "$(P)$(R)Float64ArrayOutput") {
field(DESC, "Float64 Array Output")
field(DTYP, "asynFloat64ArrayOut")
field(FTVL, "DOUBLE")
field(NELM, "10")
field(OUT, "@asyn($(PORT)) FLAT:FLOATARRAY test/floatarraytopic")
}