rebase first prototype

This commit is contained in:
feelfree69
2026-04-12 12:57:49 +02:00
parent d4d12fe3b4
commit b21bfac917
6 changed files with 156 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
#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