New rewritten serial driver + dev interface

This commit is contained in:
2025-10-04 21:31:45 +02:00
parent 0117080b61
commit acbf051dbc
16 changed files with 139 additions and 16 deletions

View File

@ -0,0 +1,12 @@
#ifndef DRIVERS_SERIAL_SERIAL_H_
#define DRIVERS_SERIAL_SERIAL_H_
#include <stdint.h>
void serial_init(void);
int serial_recvready(void);
uint8_t serial_recvb(void);
int serial_sendready(void);
void serial_sendb(uint8_t b);
#endif // DRIVERS_SERIAL_SERIAL_H_