reflow-oven-control-sw/stm-firmware/include/uart/uart.h

18 lines
257 B
C
Raw Normal View History

2020-01-26 15:27:06 +01: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);
#ifdef _P20N_
void yuri();
#endif
#endif /* UART_UART_H_ */