mirror of
1
0
Fork 0

Comments and whitespace.

This commit is contained in:
Mika Tuupola 2011-10-09 01:43:30 +03:00
parent 91025af29e
commit adae63b499
3 changed files with 6 additions and 2 deletions

View File

@ -5,6 +5,7 @@
* Led at Arduino digital 13 (PORTB5). Cause we all love blinken leds!
*
* To compile and upload run: make clean; make; make program;
* Connect to serial with: screen /dev/tty.usbserial-* 9600
*
* Copyright 2011 Mika Tuupola
*

View File

@ -30,3 +30,4 @@ int uart_getchar(FILE *stream) {
return UDR0;
}

View File

@ -3,5 +3,7 @@ int uart_getchar(FILE *stream);
void uart_init(void);
/* 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);