/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2021-07-29 KyleChan first version */ #ifndef __DRV_USART_V2_H__ #define __DRV_USART_V2_H__ #include #include #include #include #include #include /* renesas config class */ struct ra_uart_config { const char *name; uart_ctrl_t *const p_api_ctrl; uart_cfg_t const *const p_cfg; }; struct ra_uart { struct rt_serial_device serial; rt_uint16_t uart_dma_flag; struct ra_uart_config *config; }; int rt_hw_usart_init(void); #endif /* __DRV_USART_H__ */