forked from cpascual/taurus-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an epics soft ioc DB for taurus-epics testing
- Loading branch information
cpascual
committed
Dec 12, 2015
1 parent
7e84b28
commit 201a909
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# An epics soft ioc DB for taurus-epics testing | ||
record(ao,"XXX:a"){ | ||
field(DTYP,"Soft Channel") | ||
field(VAL,0) | ||
field(UDF,1) | ||
field(FLNK,"XXX:sum") | ||
} | ||
record(ao,"XXX:b"){ | ||
field(DTYP,"Soft Channel") | ||
field(VAL,0) | ||
field(UDF,1) | ||
field(FLNK,"XXX:sum") | ||
} | ||
record(calc,"XXX:sum"){ | ||
field(INPA,"XXX:a") | ||
field(INPB,"XXX:b") | ||
field(CALC,"A+B") | ||
} | ||
record(calc, "XXX:random"){ | ||
field(SCAN, "1 second") | ||
field(INPA, "XXX:a") | ||
field(CALC, "RNDM*A") | ||
} |