UART STDIO driver for Arduino Uno
This module need UART module present
###Usage
- Comment CRLF / ECHO (if need) macro in uart_stdio.c
#define CRLF
#define ECHO
- Write your code, e.g. in main.c
...
#include <stdio.h>
int main() {
printf("Hello World!\n");
int i;
i = 3;
printf("variable i = %d\n", i);
return 0;
}