uart disabled so far

This commit is contained in:
hg
2016-09-07 07:47:41 +02:00
parent 992919da23
commit 19d126a6cf
2 changed files with 1 additions and 1 deletions

14
disabled/uart.h-disabled Normal file
View File

@ -0,0 +1,14 @@
#ifndef UART_H_
#define UART_H_
#include <stdint.h>
#define UART_TX_BUFFER_SIZE 20
void uartInit(void *handleArg);
void uartExec(void *handleArg);
int putchar(int character);
#endif // UART_H_