core_soft_keyboard.h 411 B

12345678
  1. #ifndef __CORE_SOFT_KEYBOARD_H__
  2. #define __CORE_SOFT_KEYBOARD_H__
  3. void SoftKB_Setup(uint32_t ScanPeriodUS, uint8_t ScanTimes, uint8_t PressConfirmTimes, uint8_t IsIrqMode, CBFuncEx_t CB, void *pParam);
  4. void SoftKB_IOConfig(const uint8_t *InIO, uint8_t InIONum, const uint8_t *OutIO, uint8_t OutIONum, uint8_t PressKeyIOLevel);
  5. void SoftKB_Start(void);
  6. void SoftKB_Stop(void);
  7. void SoftKB_ScanOnce(void);
  8. #endif