Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:44

0001 /**
0002  * @file
0003  * @ingroup lm32_uart RTEMSBSPsLM32SharedMilkymistOne
0004  * @brief Milkymist UART definitions
0005  */
0006 
0007 /*
0008  *  This file contains definitions for the Milkymist UART
0009  *
0010  *  The license and distribution terms for this file may be
0011  *  found in the file LICENSE in this distribution or at
0012  *  http://www.rtems.org/license/LICENSE.
0013  */
0014 
0015 #ifndef _BSPUART_H
0016 #define _BSPUART_H
0017 
0018 void BSP_uart_init(int baud);
0019 void BSP_uart_polled_write(char ch);
0020 int BSP_uart_polled_read(void);
0021 
0022 #endif /* _BSPUART_H */