versadac  1
versadac - Scalable Recorder Firmware
ENUM_PVStatus.h
1 /*
2 PV status.
3 $Id: ENUM_PVStatus.h 4938 2006-10-10 14:20:18Z martinto $
4 */
5 
6 #ifndef __ENUM_PV_STATUS_H
7 #define __ENUM_PV_STATUS_H
8 
9 #undef NO_DATA //TBD
10 
11 enum ENUM_PVStatus
12 {
13  GOOD_PV,
14  CHANNEL_OFF,
15  OVER_RANGE,
16  UNDER_RANGE,
17  HW_ERROR,
18  RANGING,
19  OVERFLOW_PV,
20  BAD_PV,
21  HW_CAPS_EXCEEDED,
22  NO_DATA,
23  NOT_USED_____TOO_MANY_LIN_TABLES, // Not used on Nano but left in so that enumeration values are unchanged
24  NOT_USED_____NO_OF_RM_PV_STATI, // Not used on Nano but left in so that enumeration values are unchanged
25  COMMS_CHAN_ERROR
26 };
27 
28 #endif /* __ENUM_PV_STATUS_H */