Files
Matthias Blankertz 0bc4815926 - Debugged SPI module
- Debugged UART
- Firmware support for SPI, UART
- Work on SD/MMC support in firmware
- Debugged mblite core/WB interface
2013-06-08 11:53:27 +02:00

14 lines
270 B
C

// Copyright (c) 2013 Matthias Blankertz <matthias@blankertz.org>
#ifndef _UART_H_
#define _UART_H_
#include <stdbool.h>
void uart_writeb(unsigned char b);
void uart_writes(const char *str);
unsigned char uart_readb();
bool uart_readline(char *buf, int max);
#endif