123456789101112131415161718192021222324252627282930 |
-
- #ifndef BSC_H
- #define BSC_H
- #define BSC_REV 1.2
- #define BSC_DEVICE_TYPE ((UCHAR) 121)
- #define BSC_TX_TYPE ((UCHAR) 1)
- #define BSC_MSG_PERIOD ((USHORT) 8086)
- #define BSC_HALF_PERIOD ((USHORT) 16172)
- #define BSC_QUARTER_PERIOD ((USHORT) 32344)
- #define BSC_PAGE0 ((UCHAR) 0)
- typedef enum
- {
- BSC_INIT = 0,
- BSC_ACTIVE = 1,
- } BSCState;
- #endif
|