1
0
mirror of synced 2024-11-22 09:14:24 +01:00
avr_demo/hello_uart_async/uart.h
2015-02-19 00:22:51 -08:00

13 lines
220 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 */
extern FILE uart_output;
extern FILE uart_input;