mirror of
1
0
Fork 0
avr_demo/hello_uart_async/uart.h

13 lines
220 B
C
Raw Normal View History

2011-10-05 22:41:19 +02:00
int uart_putchar(char c, FILE *stream);
int uart_getchar(FILE *stream);
void uart_init(void);
struct rx_ring;
struct tx_ring;
2011-10-05 22:41:19 +02:00
/* http://www.ermicro.com/blog/?p=325 */
2015-02-19 09:22:51 +01:00
extern FILE uart_output;
extern FILE uart_input;