You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 regels
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