[drv_usart]完善ch32的串口驱动。 (#6336)

This commit is contained in:
liYang~
2022-08-27 12:34:27 +08:00
committed by GitHub
parent ae66e67dee
commit ef8ae7963c
2 changed files with 331 additions and 117 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -5,12 +5,45 @@
*
* Change Logs:
* Date Author Notes
* 2009-01-05 Bernard the first version
* 2022-08-27 liYony the first version
*/
#ifndef __USART_H__
#define __USART_H__
#include "rthw.h"
#include "rtthread.h"
#ifndef __DRV_USART_H__
#define __DRV_USART_H__
#include <rtthread.h>
#include "rtdevice.h"
#include <rthw.h>
/* Do not use GPIO_Remap*/
#define GPIO_Remap_NONE 0
/* ch32 hardware config class */
struct ch32_uart_hw_config
{
rt_uint32_t periph_clock;
GPIO_TypeDef *tx_gpio_port;
rt_uint16_t tx_gpio_pin;
GPIO_TypeDef *rx_gpio_port;
rt_uint16_t rx_gpio_pin;
rt_uint32_t remap;
};
/* ch32 config class */
struct ch32_uart_config
{
const char *name;
USART_TypeDef *Instance;
IRQn_Type irq_type;
};
/* ch32 uart dirver class */
struct ch32_uart
{
struct ch32_uart_hw_config *hw_config;
struct ch32_uart_config *config;
USART_InitTypeDef Init;
struct rt_serial_device serial;
};
int rt_hw_usart_init(void);
#endif