2021-08-06 18:35:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2022-12-20 17:49:37 +08:00
|
|
|
* 2013-03-30 Bernard the first verion
|
2021-08-06 18:35:58 +08:00
|
|
|
*/
|
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
#ifndef __DRV_UART_H__
|
|
|
|
#define __DRV_UART_H__
|
2021-08-06 18:35:58 +08:00
|
|
|
|
|
|
|
int rt_hw_uart_init(void);
|
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
#endif /* __DRV_UART_H__ */
|