Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #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
|