drv_uart.h 476 B

1234567891011121314151617181920
  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. #include "mss_uart.h"
  13. void uart_rx_handler(mss_uart_instance_t *this_uart);
  14. void uart0_rx_handler(mss_uart_instance_t * this_uart);
  15. void uart1_rx_handler(mss_uart_instance_t * this_uart);
  16. int rt_hw_uart_init(void);
  17. #endif