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.
|
- #ifndef SYSLOG_H
- #define SYSLOG_H
- #include "define.h"
- #define SYSLOG_TX_TIMEOUT 200 //ms
-
-
- int InitSyslog();
- void SyslogTick();
- int SyslogNewByte(char byte);
- int SyslogNewString(char *string);
- int SyslogIsBufferEmpty();
- void SyslogSetLTEPassthrough(bool Enable);
- void RxSyslogBuf(unsigned char *DataBuf, int size);
-
-
- #endif
|