keypad.h 306 B

1234567891011121314151617181920
  1. #ifndef _KEYPAD_H
  2. #define _KEYPAD_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define KEY_START_EVENT 1
  7. #define KEY_STOP_EVENT 2
  8. #define KEY_SAMPLE_EVENT 3
  9. void KeypadInit(void);
  10. void KeyEventHandler(UINT32 adc_id, UINT32 ulEvent, UINT32 lpParam, UINT32 wParam);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif