2025-02-15 11:05:28 -05:00

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