versadac  1
versadac - Scalable Recorder Firmware
ENUM_AscPrintStatus.h
1 /*
2 Enumerations to represent the status for an ascii printer
3 $Id: ENUM_AscPrintStatus.h 4938 2006-10-10 14:20:18Z martinto $
4 */
5 
6 #ifndef __ENUM_ASCPRINT_STATUS_H
7 #define __ENUM_ASCPRINT_STATUS_H
8 
9 // NB the key text for this enumeration is hardwired to produce the printer
10 // error messages so changes to names here must be refelcted in the ascprint fb
11 enum ENUM_AscPrintStatus
12 {
13  ENUM_AscPrintStatusOK = 0x0,
14  ENUM_AscPrintStatusOffline = 0x01,
15  ENUM_AscPrintStatusPaperLow = 0x02,
16  ENUM_AscPrintStatusPaperOut = 0x04,
17  ENUM_AscPrintStatusError = 0x08
18 };
19 
20 #endif /* __ENUM_SERIALCOMMSPROTOCOL_H */
21 
22