2015-04-26 17:54:51 +02:00
|
|
|
/*
|
|
|
|
* uart.h
|
|
|
|
*
|
|
|
|
* Created on: Dec 15, 2014
|
|
|
|
* Author: shino-chan
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UART_UART_H_
|
|
|
|
#define UART_UART_H_
|
|
|
|
|
|
|
|
void initUART();
|
|
|
|
void sendChar(char c);
|
|
|
|
void sendString(char* s, int count);
|
2018-11-07 17:18:24 +01:00
|
|
|
|
2015-04-26 17:54:51 +02:00
|
|
|
#endif /* UART_UART_H_ */
|