112 lines
2.5 KiB
Plaintext
112 lines
2.5 KiB
Plaintext
#*************************************************************************
|
|
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE Versions 3.13.7
|
|
# and higher are distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
menu(egeventRAM) {
|
|
choice(egeventRAM_RAM_1,"RAM 1")
|
|
choice(egeventRAM_RAM_2,"RAM 2")
|
|
}
|
|
menu(egeventUNIT) {
|
|
choice(egeventUNIT_Clock_Ticks,"Clock Ticks")
|
|
choice(egeventUNIT_Fortnights,"Fortnights")
|
|
choice(egeventUNIT_Weeks,"Weeks")
|
|
choice(egeventUNIT_Days,"Days")
|
|
choice(egeventUNIT_Hours,"Hours")
|
|
choice(egeventUNIT_Minuites,"Minuites")
|
|
choice(egeventUNIT_Seconds,"Seconds")
|
|
choice(egeventUNIT_Milliseconds,"Milliseconds")
|
|
choice(egeventUNIT_Microseconds,"Microseconds")
|
|
choice(egeventUNIT_Nanoseconds,"Nanoseconds")
|
|
}
|
|
recordtype(egevent) {
|
|
include "dbCommon.dbd"
|
|
field(OUT,DBF_OUTLINK) {
|
|
prompt("Output Specification")
|
|
promptgroup(GUI_OUTPUT)
|
|
interest(1)
|
|
}
|
|
field(ENM,DBF_LONG) {
|
|
prompt("Event Number")
|
|
promptgroup(GUI_DISPLAY)
|
|
pp(TRUE)
|
|
base(HEX)
|
|
interest(1)
|
|
}
|
|
field(LEVT,DBF_LONG) {
|
|
prompt("Last Event Number")
|
|
special(SPC_NOMOD)
|
|
pp(TRUE)
|
|
interest(1)
|
|
}
|
|
field(RAM,DBF_MENU) {
|
|
prompt("Event RAM")
|
|
promptgroup(GUI_DISPLAY)
|
|
pp(TRUE)
|
|
interest(1)
|
|
menu(egeventRAM)
|
|
}
|
|
field(LRAM,DBF_MENU) {
|
|
prompt("Last RAM")
|
|
special(SPC_NOMOD)
|
|
pp(TRUE)
|
|
interest(1)
|
|
menu(egeventRAM)
|
|
}
|
|
field(DELY,DBF_DOUBLE) {
|
|
prompt("Desired Delay Time")
|
|
promptgroup(GUI_DISPLAY)
|
|
pp(TRUE)
|
|
interest(1)
|
|
}
|
|
field(ADLY,DBF_DOUBLE) {
|
|
prompt("Actual Delay")
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
}
|
|
field(DPOS,DBF_LONG) {
|
|
prompt("Desired Position")
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
}
|
|
field(APOS,DBF_LONG) {
|
|
prompt("Actual Position")
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
}
|
|
field(LDLY,DBF_DOUBLE) {
|
|
prompt("Last Desired Delay")
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
}
|
|
field(UNIT,DBF_MENU) {
|
|
prompt("Delay Units")
|
|
promptgroup(GUI_DISPLAY)
|
|
pp(TRUE)
|
|
interest(1)
|
|
menu(egeventUNIT)
|
|
}
|
|
field(VAL,DBF_CHAR) {
|
|
prompt("Worthless Value")
|
|
asl(ASL0)
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
}
|
|
field(ELN,DBF_NOACCESS) {
|
|
prompt("List Node")
|
|
special(SPC_NOMOD)
|
|
interest(4)
|
|
extra("ELLNODE eln")
|
|
}
|
|
field(SELF,DBF_NOACCESS) {
|
|
prompt("Self Pointer")
|
|
special(SPC_NOMOD)
|
|
interest(4)
|
|
extra("struct egeventRecord *self")
|
|
}
|
|
}
|