stm32f103 usart2配置
时间: 2023-07-04 15:18:48 浏览: 87
好的,下面是 stm32f103 的 USART2 配置步骤:
1. 打开 RCC 时钟控制器,使能 USART2 的时钟。
```
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
```
2. 配置 GPIO 引脚为 USART2 的 Tx 和 Rx 引脚。
```
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; //Tx
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //Rx
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
```
3. 配置 USART2 的工作参数,包括波特率、数据位、停止位和校验位等。
```
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 115200;
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(USART2, &USART_InitStructure);
USART_Cmd(USART2, ENABLE);
```
4. 最后,使用 USART_SendData() 函数发送数据,使用 USART_ReceiveData() 函数接收数据。
以上就是 stm32f103 的 USART2 配置过程,希望能对你有所帮助。
阅读全文