Skip to content

arduino-c/uart_stdio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UART STDIO

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;
}

About

STDIO implementation via UART for Arduino Uno

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages