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

10 lines
187 B
C
Raw Permalink Normal View History

2011-10-05 21:03:53 +02:00
int uart_putchar(char c, FILE *stream);
int uart_getchar(FILE *stream);
void uart_init(void);
2011-10-09 00:43:30 +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;