stm32f103c8t6通过usart3获取到esp01s接收到的数据的函数代码
时间: 2023-09-06 20:14:16 浏览: 66
以下是使用USART3接收ESP8266发送的数据的示例代码:
```c
#include "stm32f10x.h"
void USART3_Init(void)
{
// 使能USART3和GPIOB时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
// 配置USART3 Rx (PB11) 为浮空输入模式
GPIO_InitTypeDef GPIO_InitStruct;
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_11;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStruct);
// 配置USART3 Tx (PB10) 为推挽输出模式
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStruct);
// 配置USART3
USART_InitTypeDef USART_InitStruct;
USART_InitStruct.USART_BaudRate = 115200;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_Parity = USART_Parity_No;
USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStruct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART3, &USART_InitStruct);
// 使能USART3
USART_Cmd(USART3, ENABLE);
}
uint8_t USART3_ReadByte(void)
{
while (USART_GetFlagStatus(USART3, USART_FLAG_RXNE) == RESET);
return (uint8_t)USART_ReceiveData(USART3);
}
```
以上代码初始化了USART3,将PB11配置为浮空输入模式以接收ESP8266发送的数据,将PB10配置为推挽输出模式以发送数据。USART3_ReadByte()函数将会阻塞并等待接收一个字节的数据。
你可以在你的主函数中调用`USART3_ReadByte()`函数以读取ESP8266发送的数据,例如:
```c
int main(void)
{
USART3_Init();
while (1)
{
uint8_t data = USART3_ReadByte();
// 处理接收到的数据
}
}
```
阅读全文