4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-23 07:07:23 +08:00
self-confident neko 6da3b2b4b6
完善CH32V307的串口BSP (#6359)
* Update drv_usart.h

CH32V307的串口1外设是对接在APB2桥上,其他串口均对接在APB1桥上

已完全测试,并发现一个问题,已修正。
2022-09-01 12:35:11 -04:00

51 lines
1016 B
C

/*
* Copyright (c) 2006-2022, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2022-08-27 liYony the first version
*/
#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 uart_periph_clock;
rt_uint32_t gpio_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