12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- #ifndef HRM_H
- #define HRM_H
- #define HRM_REV 1.13
- #define HRM_DEVICE_TYPE ((UCHAR) 120)
- #define HRM_TX_TYPE ((UCHAR) 1)
- #define HRM_MSG_PERIOD ((USHORT) 8070)
- #define HRM_HALF_PERIOD ((USHORT 16140)
- #define HRM_QUARTER_PERIOD ((USHORT) 32280)
- #define HRM_RESERVED ((UCHAR) 0xFF)
- #define HRM_INVALID_BPM ((UCHAR) 0)
- #define HRM_PAGE0 ((UCHAR) 0)
- #define HRM_PAGE1 ((UCHAR) 1)
- #define HRM_PAGE2 ((UCHAR) 2)
- #define HRM_PAGE3 ((UCHAR) 3)
- #define HRM_PAGE4 ((UCHAR) 4)
- #define HRM_TOGGLE_MASK ((UCHAR) 0x80)
- #define HRM_BACKGROUND_INTERVAL 65
- typedef enum
- {
- HRM_STD0_PAGE = 0,
- HRM_STD1_PAGE = 1,
- HRM_INIT_PAGE = 2,
- HRM_EXT_PAGE = 3
- } HRMStatePage;
- #endif
|