forked from Imagelibrary/rtems
23 lines
500 B
C
23 lines
500 B
C
/**
|
|
* @file
|
|
* @ingroup lm32_uart RTEMSBSPsLM32SharedMilkymistOne
|
|
* @brief Milkymist UART definitions
|
|
*/
|
|
|
|
/*
|
|
* This file contains definitions for the Milkymist UART
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifndef _BSPUART_H
|
|
#define _BSPUART_H
|
|
|
|
void BSP_uart_init(int baud);
|
|
void BSP_uart_polled_write(char ch);
|
|
int BSP_uart_polled_read(void);
|
|
|
|
#endif /* _BSPUART_H */
|