Files
StreamGenerator/db/correlation_unit.db
Edward Wall 5b65a01e51
Some checks failed
Test And Build / Build (push) Failing after 2s
Test And Build / Lint (push) Successful in 2s
can readback correlation unit status
2025-11-19 14:08:06 +01:00

30 lines
701 B
Plaintext

# 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(ZNAM, "OFF")
field(ONAM, "ON")
field(PINI, 1)
}
record(bi, "$(INSTR)$(NAME):Enable_RBV")
{
field(DESC, "Electronics Status")
field(DTYP, "asynInt32")
field(INP, "@asyn($(PORT),0,$(TIMEOUT=1)) EN_EL_RBV")
field(ZNAM, "OFF")
field(ONAM, "ON")
field(SCAN, ".5 second")
}