Skip to content

Commit

Permalink
Merge pull request #12 from epics-containers/fix-db
Browse files Browse the repository at this point in the history
restore missing db file
  • Loading branch information
gilesknap authored Sep 13, 2024
2 parents d50a983 + 55fd64f commit d1ee67b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions services/bl01t-ea-test-01/config/ioc.db
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
record(calc, "bl01t:SUM") {
field(DESC, "Sum A and B")
field(CALC, "A+B")
field(INPA, "bl01t:A")
field(INPB, "bl01t:B")
}

record(ao, "bl01t:A") {
field(DESC, "A voltage")
field(PREC, "3")
field(EGU, "Volts")
field(DRVL, "-10")
field(DRVH, "+10")
field(VAL, "0.000")
field(FLNK, "bl01t:SUM")
}

record(ao, "bl01t:B") {
field(DESC, "B voltage")
field(PREC, "3")
field(EGU, "Volts")
field(DRVL, "-10")
field(DRVH, "+10")
field(VAL, "0.000")
field(FLNK, "bl01t:SUM")
}

0 comments on commit d1ee67b

Please sign in to comment.