stm32f103c8t6串口3配置
时间: 2024-05-26 21:09:42 浏览: 92
根据提供的引用内容,可以得知串口3的引脚接线为RX PB11和TX PB10,波特率为9600。下面是串口3的配置方法:
1. 首先需要在RCC_Configuration函数中使能串口3的时钟,代码如下:
```
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
```
2. 然后需要配置串口3的GPIO引脚,代码如下:
```
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10 | GPIO_Pin_11;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
```
3. 接着需要配置串口3的USART参数,代码如下:
```
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 9600;
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);
```
4. 最后需要使能串口3的中断并启动串口3,代码如下:
```
USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);
USART_Cmd(USART3, ENABLE);
NVIC_EnableIRQ(USART3_IRQn);
```
以上就是stm32f103c8t6串口3的配置方法。需要注意的是,在使用串口3时,需要在USART3_IRQHandler函数中编写串口3的中断处理程序。
阅读全文