summaryrefslogtreecommitdiffstats
path: root/src/rs232.h
blob: 4a9f42ad5d626b533bb65a297c4919a330cc337f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 
 * 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 eusart1_putch(char c);
extern void eusart2_putch(char c);

extern char eusart1_getch(void);

extern char eusart1_getche(void);


#endif	/* RS232_H */