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

10 lines
187 B
C

int uart_putchar(char c, FILE *stream);
int uart_getchar(FILE *stream);
void uart_init(void);
/* http://www.ermicro.com/blog/?p=325 */
extern FILE uart_output;
extern FILE uart_input;