KeyBoard.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:0k
源码类别:

uCOS

开发平台:

C/C++

  1. #ifndef __KEYBOARD_H__
  2. #define __KEYBOARD_H__
  3. #include "../inc/macro.h"
  4. #define OS_KeyBoard_Scan_Task 1
  5. #define KEY_DOWN (1ul<<31)
  6. void Key_init(void);
  7. int KeyBoard_Read(int ndev, BOOL isBlock);
  8. #endif