serial.h
上传用户:tzjinxin1
上传日期:2022-08-08
资源大小:272k
文件大小:0k
开发平台:

Visual C++

  1. /*本项目的头文件*/
  2. #ifndef __SERIAL_H
  3. #define __SERIAL_H
  4. #ifdef  OS_CPU_GLOBALS
  5. #define OS_CPU_EXT
  6. #else
  7. #define OS_CPU_EXT  extern
  8. #endif
  9. /*Serial port send buffer struct */
  10. typedef struct
  11. {
  12.  unsigned char* buffer;
  13.  int ptr;
  14.  int    count;
  15. }SerialBuffer;
  16. OS_CPU_EXT SerialBuffer pc_send;
  17. void SendStr(unsigned char* buffer,int count) reentrant;
  18. #endif //__SERIAL_H