17 lines
284 B
C
17 lines
284 B
C
|
/*
|
||
|
* rs232.h
|
||
|
*
|
||
|
* Created: 06.10.2013 16:34:17
|
||
|
* Author: netz
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef RS232_H_
|
||
|
#define RS232_H_
|
||
|
|
||
|
int uart_putchar(char c, FILE *stream);
|
||
|
static FILE rs232 = FDEV_SETUP_STREAM(uart_putchar, NULL, _FDEV_SETUP_WRITE);
|
||
|
|
||
|
void init_rs232();
|
||
|
|
||
|
#endif /* RS232_H_ */
|