4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-03-04 21:08:29 +08:00
Huaqi Fang 0b932c677a nuclei: optimize drivers support
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-04-09 09:32:22 +08:00

28 lines
474 B
C

#ifndef __DRV_UART_H__
#define __DRV_UART_H__
#include <rtthread.h>
#include <rtdevice.h>
#include <drv_config.h>
/* gd32 config class */
struct gd32_uart_config
{
const char *name;
uint32_t uart_base;
IRQn_Type irqn;
};
/* gd32 uart dirver class */
struct gd32_uart
{
struct gd32_uart_config *config;
struct rt_serial_device serial;
};
int rt_hw_usart_init(void);
#endif /* __DRV_USART_H__ */
/******************* end of file *******************/