hal_key.h 172 B

1234567891011
  1. #ifndef __HAL_KEY_H__
  2. #define __HAL_KEY_H__
  3. #include "sys.h"
  4. #define KEY_PRESS_STATUS 0
  5. void HAL_KeyInit(void);
  6. uint8_t HAL_KeyGetStatus(void);
  7. #endif //__HAL_KEY_H__