13 lines
323 B
C
13 lines
323 B
C
int uart_putchar(char c, FILE *stream);
|
|
int uart_getchar(FILE *stream);
|
|
|
|
void uart_init(void);
|
|
|
|
struct rx_ring;
|
|
struct tx_ring;
|
|
|
|
/* http://www.ermicro.com/blog/?p=325 */
|
|
|
|
FILE uart_output = FDEV_SETUP_STREAM(uart_putchar, NULL, _FDEV_SETUP_WRITE);
|
|
FILE uart_input = FDEV_SETUP_STREAM(NULL, uart_getchar, _FDEV_SETUP_READ);
|