This commit is contained in:
2017-03-31 13:25:42 +02:00
parent 266acb48c8
commit 70aa56497f
25 changed files with 154 additions and 25 deletions

17
include/uart/uart.h Normal file
View File

@@ -0,0 +1,17 @@
/*
* 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);
#ifdef _P20N_
void yuri();
#endif
#endif /* UART_UART_H_ */