STM32入门教程第13篇都讲些什么内容呢?

摘要:STM32入门(13) 项目一:串口的发送与接收 #include "stm32f10x.h"Device header #include "Delay.
STM32入门(13) 项目一:串口的发送与接收 #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "Serial.h" uint8_t RxData; //定义用于接收串口数据的变量 int main(void) { /*模块初始化*/ OLED_Init(); //OLED初始化 /*显示静态字符串*/ OLED_ShowString(1, 1, "RxData:"); /*串口初始化*/ Serial_Init(); //串口初始化 while (1) { if (Serial_GetRxFlag() == 1) //检查串口接收数据的标志位 { RxData = Serial_GetRxData(); //获取串口接收的数据 Serial_SendByte(RxData); //串口将收到的数据回传回去,用于测试 OLED_ShowHexNum(1, 9, RxData, 2); //显示串口接收的数据 } } } #include "stm32f10x.h" // Device header #include <stdio.h> #include <stdarg.h> uint8_t Serial_RxData; // 定义串口接收的数据变量 uint8_t Serial_RxFlag; // 定义串口接收的标志位变量 /** * 函 数:串口初始化 * 参 数:无 * 返 回 值:无 */ void Serial_Init() { // 开启时钟 RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE); // 开启USART1的时钟 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE); // 开启GPIOA的时钟 // GPIO初始化 GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA,&GPIO_InitStructure); // 将PA9引脚初始化为复用推挽输出 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA,&GPIO_InitStructure); // 将PA10引脚初始化为上拉输入 // USART初始化 USART_InitTypeDef USART_InitStructure; // 定义结构体变量 USART_InitStructure.USART_BaudRate = 9600; // 波特率 // 硬件流控制,不需要 USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; // 模式,发送模式和接收模式均选择 USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx; USART_InitStructure.USART_Parity = USART_Parity_No; // 奇偶校验,不需要 USART_InitStructure.USART_StopBits = USART_StopBits_1; // 停止位,选择1位 USART_InitStructure.USART_WordLength = USART_WordLen
阅读全文