mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 20:13:40 +08:00
16 lines
269 B
C
16 lines
269 B
C
|
/*
|
||
|
* Copyright (c) 2019-2020, Xim
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __DRV_UART_H__
|
||
|
#define __DRV_UART_H__
|
||
|
|
||
|
void rt_hw_uart_start_rx_thread();
|
||
|
int rt_hw_uart_init(void);
|
||
|
void drv_uart_puts(char *str); // for syscall
|
||
|
|
||
|
#endif /* __DRV_UART_H__ */
|