Testground/Test/rs232.h

17 lines
284 B
C
Raw Normal View History

2013-10-06 18:10:06 +02:00
/*
* 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_ */