用标准库写stm32f103c8t6的USART3串口初始化代码
时间: 2023-08-10 08:03:23 浏览: 107
以下是基于标准库的stm32f103c8t6的USART3串口初始化代码:
```
// 定义USART3的GPIO引脚
#define USART3_TX GPIO_Pin_10
#define USART3_RX GPIO_Pin_11
// 初始化USART3
void USART3_Init(uint32_t baudrate)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 使能USART3和GPIOB时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO | RCC_APB2Periph_USART3, ENABLE);
// 配置USART3_TX引脚为推挽输出
GPIO_InitStructure.GPIO_Pin = USART3_TX;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
// 配置USART3_RX引脚为浮空输入
GPIO_InitStructure.GPIO_Pin = USART3_RX;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
// 配置USART3
USART_InitStructure.USART_BaudRate = baudrate;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART3, &USART_InitStructure);
// 使能USART3
USART_Cmd(USART3, ENABLE);
}
```
在主函数中调用USART3_Init函数即可完成USART3的初始化。需要注意的是,使用标准库需要在工程中添加对应的库文件,并在代码中包含相应的头文件。
阅读全文