versadac  1
versadac - Scalable Recorder Firmware
ENUM_Uhh_RecStatus.h
1 
2 /*
3 Enumerations for UHH file recording status bits, as used in the RecStatus field
4 of start & end records.
5 $I$
6 */
7 
8 #ifndef __ENUM_UHH_RECSTATUS_H
9 #define __ENUM_UHH_RECSTATUS_H
10 
11 /*
12  * NB These are stored as uint8, so should not exceed 0xFF
13 */
14 
15 enum ENUM_Uhh_RecStatus
16 {
17  ENUM_Uhh_RecStatus_Default = 0x00,
18  ENUM_Uhh_RecStatus_DisableSamples = 0x01,
19  ENUM_Uhh_RecStatus_DisableAlarmInfo = 0x02,
20  ENUM_Uhh_RecStatus_DisableMessages = 0x04,
21  ENUM_Uhh_RecStatus_DisableBatchInfo = 0x08,
22  ENUM_Uhh_RecStatus_DisableAll = 0x0F
23 };
24 
25 #endif /* __ENUM_UHH_RECSTATUS_H */