drv_uart.h 269 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2019-2020, Xim
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. */
  7. #ifndef __DRV_UART_H__
  8. #define __DRV_UART_H__
  9. void rt_hw_uart_start_rx_thread();
  10. int rt_hw_uart_init(void);
  11. void drv_uart_puts(char *str); // for syscall
  12. #endif /* __DRV_UART_H__ */