source: rtems/c/src/lib/libbsp/lm32/shared/milkymist_console/uart.h @ 9dc999a

4.115
Last change on this file since 9dc999a was 9dc999a, checked in by Chirayu Desai <cdesai@…>, on 12/23/13 at 17:06:34

lm32: Enhance Doxygen #2

  • Property mode set to 100644
File size: 490 bytes
Line 
1/**
2 * @file
3 * @ingroup lm32_uart lm32_milkymist_shared
4 * @brief Milkymist UART definitions
5 */
6
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.com/license/LICENSE.
13 */
14
15#ifndef _BSPUART_H
16#define _BSPUART_H
17
18void BSP_uart_init(int baud);
19void BSP_uart_polled_write(char ch);
20int BSP_uart_polled_read(void);
21
22#endif /* _BSPUART_H */
Note: See TracBrowser for help on using the repository browser.