blob: 2733bb71fb654da1e07139b6345a42654054e392 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef UART_UART_H
#define UART_UART_H
void uart_setup(void);
void uart_putchar(int c);
void uart_printf(const char *fmt, ...);
void uart_puts(const char *s);
void uart0_isr(void);
#endif /* UART_UART_H */
|