1 /*
2  * Copyright (c) 2006-2020, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2020-08-06     whik         first version
9  */
10 #ifndef __DRV_UART_H__
11 #define __DRV_UART_H__
12 
13 #include "mss_uart.h"
14 void uart_rx_handler(mss_uart_instance_t *this_uart);
15 
16 void uart0_rx_handler(mss_uart_instance_t * this_uart);
17 void uart1_rx_handler(mss_uart_instance_t * this_uart);
18 int rt_hw_uart_init(void);
19 
20 #endif
21