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.
 
 
 
 

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