mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
13 lines
200 B
C
13 lines
200 B
C
#ifndef _SYSLOG_H_
|
|
#define _SYSLOG_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define LOGBUF_SIZE 512
|
|
|
|
void syslog_init(void) __banked;
|
|
void syslog_write_char(void) __banked;
|
|
void handle_syslog(void) __banked;
|
|
|
|
#endif
|