1234567891011121314151617181920212223242526272829303132333435363738394041 |
-
- #ifndef BS_H
- #define BS_H
- #define BS_REV 1.2
- #define BS_DEVICE_TYPE ((UCHAR) 123)
- #define BS_TX_TYPE ((UCHAR) 1)
- #define BS_MSG_PERIOD ((USHORT) 8118)
- #define BS_HALF_PERIOD ((USHORT) 16236)
- #define BS_QUARTER_PERIOD ((USHORT) 32472)
- #define BS_RESERVED ((UCHAR) 0xFF)
- #define BS_PAGE0 ((UCHAR) 0)
- #define BS_PAGE1 ((UCHAR) 1)
- #define BS_PAGE2 ((UCHAR) 2)
- #define BS_PAGE3 ((UCHAR) 3)
- #define BS_TOGGLE_MASK ((UCHAR) 0x80)
- #define BS_BACKGROUND_INTERVAL 65
- typedef enum
- {
- BS_STD0_PAGE = 0,
- BS_STD1_PAGE = 1,
- BS_INIT_PAGE = 2,
- BS_EXT_PAGE = 3
- } BSStatePage;
- #endif
|