In some cases the license-identification header was missing, so I added that as well. Replaced the remaining headers that specifically identified "Versions 3.13.7 and higher". Makefiles and the build system were deliberately excluded.
45 lines
1.6 KiB
Plaintext
45 lines
1.6 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.
|
|
# SPDX-License-Identifier: EPICS
|
|
# EPICS Base is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
|
|
=head1 Menu menuAlarmStat
|
|
|
|
This menu defines the possible alarm statuses that EPICS records can exhibit
|
|
which is used for C<STAT> and C<NSTA> fields of all record types.
|
|
See L<Alarm Status> for more information.
|
|
|
|
=menu menuAlarmStat
|
|
|
|
=cut
|
|
|
|
menu(menuAlarmStat) {
|
|
choice(menuAlarmStatNO_ALARM,"NO_ALARM")
|
|
choice(menuAlarmStatREAD,"READ")
|
|
choice(menuAlarmStatWRITE,"WRITE")
|
|
choice(menuAlarmStatHIHI,"HIHI")
|
|
choice(menuAlarmStatHIGH,"HIGH")
|
|
choice(menuAlarmStatLOLO,"LOLO")
|
|
choice(menuAlarmStatLOW,"LOW")
|
|
choice(menuAlarmStatSTATE,"STATE")
|
|
choice(menuAlarmStatCOS,"COS")
|
|
choice(menuAlarmStatCOMM,"COMM")
|
|
choice(menuAlarmStatTIMEOUT,"TIMEOUT")
|
|
choice(menuAlarmStatHWLIMIT,"HWLIMIT")
|
|
choice(menuAlarmStatCALC,"CALC")
|
|
choice(menuAlarmStatSCAN,"SCAN")
|
|
choice(menuAlarmStatLINK,"LINK")
|
|
choice(menuAlarmStatSOFT,"SOFT")
|
|
choice(menuAlarmStatBAD_SUB,"BAD_SUB")
|
|
choice(menuAlarmStatUDF,"UDF")
|
|
choice(menuAlarmStatDISABLE,"DISABLE")
|
|
choice(menuAlarmStatSIMM,"SIMM")
|
|
choice(menuAlarmStatREAD_ACCESS,"READ_ACCESS")
|
|
choice(menuAlarmStatWRITE_ACCESS,"WRITE_ACCESS")
|
|
}
|