stm32F103zet6单片机,串口通信的程序
时间: 2023-11-19 10:27:52 浏览: 123
stm32F103RCt6 串口1 DMA发送和接收完整程序。
5星 · 资源好评率100%
以下是基于STM32F103ZET6单片机的串口通信程序示例:
```
#include "stm32f10x.h"
void USART1_Init(void);
void USART1_SendChar(char c);
void USART1_SendString(char* s);
int main(void)
{
USART1_Init();
USART1_SendString("Hello, world!\n");
while(1)
{
// 程序主循环
}
}
void USART1_Init(void)
{
// 使能USART1时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
// 配置USART1的GPIO引脚
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1的参数
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_Tx | USART_Mode_Rx;
USART_Init(USART1, &USART_InitStructure);
// 使能USART1
USART_Cmd(USART1, ENABLE);
}
void USART1_SendChar(char c)
{
// 等待USART1准备好发送数据
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
// 发送数据
USART_SendData(USART1, c);
}
void USART1_SendString(char* s)
{
// 循环发送字符串中的每个字符
while(*s)
{
USART1_SendChar(*s++);
}
}
```
该程序通过USART1串口发送“Hello, world!”字符串,可以在串口调试助手上查看输出结果。注意在程序中配置正确的波特率,并且在使用串口之前先使能USART1的时钟。
阅读全文