5036816967
add qemu-riscv-virt64 bsp
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__ */
|