teathermotimerng/disabled/uart.h-disabled

15 lines
213 B
Plaintext
Raw Permalink Normal View History

2016-09-06 15:28:49 +02:00
#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_