1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* * File: rs232.h * Author: _prossn * * Created on 7. dicembre 2017, 15:07 */ #ifndef RS232_H #define RS232_H extern void eusart1_init(void); extern void eusart2_init(void); extern void putch(char c); extern char getch(void); extern char getche(void); #endif /* RS232_H */