您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
323 B

  1. #ifndef SYSLOG_H
  2. #define SYSLOG_H
  3. #include "define.h"
  4. #define SYSLOG_TX_TIMEOUT 200 //ms
  5. int InitSyslog();
  6. void SyslogTick();
  7. int SyslogNewByte(char byte);
  8. int SyslogNewString(char *string);
  9. int SyslogIsBufferEmpty();
  10. void SyslogSetLTEPassthrough(bool Enable);
  11. void RxSyslogBuf(unsigned char *DataBuf, int size);
  12. #endif