使用stm32f103c8t6配置串口一用于调试,串口二发送AT指令与esp8266进行配置,且接收esp8266返回的数据
时间: 2024-04-21 12:22:55 浏览: 91
下面是一个示例代码,展示了如何在STM32F103C8T6上配置串口1用于调试输出,配置串口2用于发送AT指令与ESP8266进行配置,并接收ESP8266返回的数据:
```c
#include "stm32f10x.h"
#include <stdio.h>
// 串口1参数配置
void USART1_Configuration(void) {
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 使能串口1和GPIOA的时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
// 配置USART1的引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; // USART1_TX
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; // 复用推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; // GPIO速度为50MHz
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1
USART_InitStructure.USART_BaudRate = 115200; // 波特率为115200
USART_InitStructure.USART_WordLength = USART_WordLength_8b; // 数据位长度为8位
USART_InitStructure.USART_StopBits = USART_StopBits_1; // 停止位为1个停止位
USART_InitStructure.USART_Parity = USART_Parity_No; // 无奇偶校验
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; // 无硬件流控制
USART_InitStructure.USART_Mode = USART_Mode_Tx; // 仅发送模式
USART_Init(USART1, &USART_InitStructure);
// 使能USART1
USART_Cmd(USART1, ENABLE);
}
// 串口2参数配置
void USART2_Configuration(void) {
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
// 使能串口2和GPIOA的时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
// 配置USART2的引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; // USART2_TX
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; // 复用推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; // GPIO速度为50MHz
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART2
USART_InitStructure.USART_BaudRate = 115200; // 波特率为115200
USART_InitStructure.USART_WordLength = USART_WordLength_8b; // 数据位长度为8位
USART_InitStructure.USART_StopBits = USART_StopBits_1; // 停止位为1个停止位
USART_InitStructure.USART_Parity = USART_Parity_No; // 无奇偶校验
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; // 无硬件流控制
USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx; // 发送和接收模式
USART_Init(USART2, &USART_InitStructure);
// 使能USART2的接收中断
USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);
// 使能USART2
USART_Cmd(USART2, ENABLE);
// 配置串口2中断优先级
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
}
// 向串口1发送调试输出
int fputc(int ch, FILE *f) {
USART_SendData(USART1, (uint8_t) ch);
while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
return ch;
}
// 接收ESP8266返回的数据
void USART2_IRQHandler(void) {
if (USART_GetITStatus(USART2, USART_IT_RXNE) != RESET) {
uint8_t data = USART_ReceiveData(USART2);
// 处理接收到的数据
// 在这里可以根据需求进行处理,比如打印到终端、解析数据等
printf("%c", data);
}
}
int main(void) {
// 初始化串口1和串口2
USART1_Configuration();
USART2_Configuration();
// 发送AT指令给ESP8266
sendATCommand("AT\r\n");
while (1) {
// 主循环
}
}
```
在这个示例代码中,我们通过`USART1_Configuration()`和`USART2_Configuration()`函数分别对串口1和串口2进行参数配置。同时,我们重写了`fputc()`函数,用于向串口1发送调试输出。
在`USART2_IRQHandler()`函数中,我们处理串口2接收中断,当接收到数据时,我们通过`USART_ReceiveData(USART2)`函数读取接收到的数据,并根据需求进行处理,例如打印到终端。
希望这个示例代码对你有帮助!如果有任何问题,请随时提问。
阅读全文