adds PV for turning Electornics on and off
Some checks failed
Test And Build / Lint (push) Successful in 2s
Test And Build / Build (push) Failing after 2s

This commit is contained in:
2025-11-18 14:00:26 +01:00
parent c563b07fed
commit 66792837a6
5 changed files with 72 additions and 4 deletions

21
db/correlation_unit.db Normal file
View File

@@ -0,0 +1,21 @@
# EPICS Database for streamdevice specific to measurement channels
#
# Macros
# INSTR - Prefix
# NAME - the device name, e.g. EL737
# PORT - StreamGenerator Port
################################################################################
# Status Variables
record(bo, "$(INSTR)$(NAME):Enable")
{
field(DESC, "Electronics Status")
field(DTYP, "asynInt32")
field(OUT, "@asyn($(PORT),0,$(TIMEOUT=1)) EN_EL")
field(VAL, 1)
field(ZNAM, "OFF")
field(ONAM, "ON")
field(PINI, 1)
field(SCAN, ".5 second")
}