Skip to content

Commit

Permalink
Create testioc.db
Browse files Browse the repository at this point in the history
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.
23 changes: 23 additions & 0 deletions testioc.db
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")
}

0 comments on commit 201a909

Please sign in to comment.