luat_misc.h 290 B

1234567
  1. #ifndef __LUAT_MISC_H__
  2. #define __LUAT_MISC_H__
  3. #include "stdint.h"
  4. typedef void (*powerkey_cb)(uint32_t event);
  5. uint8_t luat_misc_powerkey_get(void);
  6. void luat_misc_powerkey_setup(uint8_t enable, uint16_t press_deboubce_time, uint16_t release_deboubce_time, powerkey_cb cb);
  7. #endif