STM32F103C8T6串口3使用库函数配置使用
时间: 2024-04-25 14:03:31 浏览: 87
STM32F103C8T6库函数,使用帮助文档,函数查询
以下是使用库函数配置STM32F103C8T6串口3的步骤:
1. 首先,需要在工程中包含相应的头文件,包括“stm32f10x.h”和“stm32f10x_usart.h”。
2. 然后,需要使用“RCC_APB1PeriphClockCmd”函数来使能USART3的时钟。示例代码如下:
```
/* Enable USART3 clock */
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
```
3. 接下来,需要配置USART3的GPIO引脚。需要使用“GPIO_Init”函数来配置TX和RX引脚,分别对应PB10和PB11。示例代码如下:
```
GPIO_InitTypeDef GPIO_InitStructure;
/* Enable GPIOB clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
/* Configure USART3 Tx (PB10) as alternate function push-pull */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
/* Configure USART3 Rx (PB11) as input floating */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOB, &GPIO_InitStructure);
```
4. 接下来,需要配置USART3的参数,包括波特率、数据位、停止位和校验位等。需要使用“USART_Init”函数进行配置。示例代码如下:
```
USART_InitTypeDef USART_InitStructure;
/* USART3 configuration */
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);
```
5. 最后,需要使能USART3,并开始使用。需要使用“USART_Cmd”函数来使能USART3。示例代码如下:
```
/* Enable USART3 */
USART_Cmd(USART3, ENABLE);
```
以上就是使用库函数配置STM32F103C8T6串口3的步骤。在配置完成后,可以使用“USART_SendData”函数发送数据,使用“USART_ReceiveData”函数接收数据。
阅读全文