Files
rt-thread/bsp/renesas/libraries/HAL_Drivers/drv_usartX.h
thewon86 e98df69775 add serialX hardware driver for bluetrum gd32 n32 nuc980 renesas (#6952)
add serialX hardware driver for bluetrum gd32 n32 nuc980 renesas
2023-02-22 10:37:47 -05:00

40 lines
779 B
C

/*
* Copyright (c) 2006-2022, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-07-29 KyleChan first version
* 2022-06-08 THEWON first version for serialX
*/
#ifndef __DRV_USART_V2_H__
#define __DRV_USART_V2_H__
#include <rtthread.h>
#include <rtdevice.h>
#include <rthw.h>
#include <drv_common.h>
#include <drv_config.h>
#include <hal_data.h>
/* renesas config class */
struct ra_uart_config
{
const char *name;
uart_ctrl_t * p_api_ctrl;
uart_cfg_t uart_cfg;
};
struct ra_uart
{
struct rt_serial_device serial;
struct ra_uart_config *uart_config;
rt_bool_t intTxing;
};
int rt_hw_usart_init(void);
#endif /* __DRV_USART_H__ */