92 lines
2.0 KiB
Plaintext
92 lines
2.0 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.
|
|
#*************************************************************************
|
|
recordtype(subArray) {
|
|
include "dbCommon.dbd"
|
|
field(VAL,DBF_NOACCESS) {
|
|
prompt("Value")
|
|
asl(ASL0)
|
|
special(SPC_DBADDR)
|
|
pp(TRUE)
|
|
extra("void * val")
|
|
#=type Set by FTVL
|
|
#=read Yes
|
|
#=write Yes
|
|
}
|
|
field(PREC,DBF_SHORT) {
|
|
prompt("Display Precision")
|
|
promptgroup(GUI_COMMON)
|
|
interest(1)
|
|
prop(YES)
|
|
}
|
|
field(FTVL,DBF_MENU) {
|
|
prompt("Field Type of Value")
|
|
promptgroup(GUI_ALARMS)
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
menu(menuFtype)
|
|
}
|
|
field(INP,DBF_INLINK) {
|
|
prompt("Input Specification")
|
|
promptgroup(GUI_BITS1)
|
|
interest(1)
|
|
}
|
|
field(EGU,DBF_STRING) {
|
|
prompt("Engineering Units Name")
|
|
promptgroup(GUI_BITS2)
|
|
interest(1)
|
|
size(16)
|
|
prop(YES)
|
|
}
|
|
field(HOPR,DBF_DOUBLE) {
|
|
prompt("High Operating Range")
|
|
promptgroup(GUI_CALC)
|
|
interest(1)
|
|
prop(YES)
|
|
}
|
|
field(LOPR,DBF_DOUBLE) {
|
|
prompt("Low Operating Range")
|
|
promptgroup(GUI_CLOCK)
|
|
interest(1)
|
|
prop(YES)
|
|
}
|
|
field(MALM,DBF_ULONG) {
|
|
prompt("Maximum Elements ")
|
|
promptgroup(GUI_CLOCK)
|
|
special(SPC_NOMOD)
|
|
interest(1)
|
|
initial("1")
|
|
}
|
|
field(NELM,DBF_ULONG) {
|
|
prompt("Number of Elements")
|
|
promptgroup(GUI_COMPRESS)
|
|
pp(TRUE)
|
|
initial("1")
|
|
}
|
|
field(INDX,DBF_ULONG) {
|
|
prompt("Substring Index")
|
|
promptgroup(GUI_CONVERT)
|
|
pp(TRUE)
|
|
}
|
|
field(BUSY,DBF_SHORT) {
|
|
prompt("Busy Indicator")
|
|
special(SPC_NOMOD)
|
|
}
|
|
field(NORD,DBF_LONG) {
|
|
prompt("Number elements read")
|
|
special(SPC_NOMOD)
|
|
}
|
|
field(BPTR,DBF_NOACCESS) {
|
|
prompt("Buffer Pointer")
|
|
special(SPC_NOMOD)
|
|
interest(4)
|
|
extra("void * bptr")
|
|
}
|
|
}
|