16 lines
323 B
C
16 lines
323 B
C
#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 |