summaryrefslogtreecommitdiffstats
path: root/src/rs232.h
blob: 06866bad9ef919a4e9023bb6f3482cb1caffbbca (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
25
/* 
 * 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 */