/* * File: rs232.h * Author: _prossn * * Created on 7. dicembre 2017, 15:07 */ #ifndef RS232_H #define RS232_H #ifdef __cplusplus extern "C" { #endif extern void eusart_init(void); extern void putch(char c); extern char getch(void); extern char getche(void); #ifdef __cplusplus } #endif #endif /* RS232_H */