RTEMS  5.1
uart.h
Go to the documentation of this file.
1 
7 /*
8  * This file contains definitions for the Milkymist UART
9  *
10  * The license and distribution terms for this file may be
11  * found in the file LICENSE in this distribution or at
12  * http://www.rtems.org/license/LICENSE.
13  */
14 
15 #ifndef _BSPUART_H
16 #define _BSPUART_H
17 
18 void BSP_uart_init(int baud);
19 void BSP_uart_polled_write(char ch);
20 int BSP_uart_polled_read(void);
21 
22 #endif /* _BSPUART_H */