使用标准库,封装stm32f103c8t6通过USART1串口输出字符串的程序
时间: 2023-08-11 11:07:50 浏览: 108
下面是使用标准库,封装stm32f103c8t6通过USART1串口输出字符串的程序示例:
```c
#include "stm32f10x.h"
void USART1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);
// 配置USART1的Tx引脚PA9
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1的Rx引脚PA10
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_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_Init(USART1, &USART_InitStructure);
USART_Cmd(USART1, ENABLE);
}
void USART1_SendString(char* s)
{
while(*s)
{
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, *s++);
}
}
int main(void)
{
USART1_Init();
while(1)
{
USART1_SendString("Hello World!\r\n");
DelayMs(1000); // 自定义的延时函数
}
}
```
在上面的示例中,我们首先定义了一个USART1_Init函数,用于初始化USART1串口。然后我们定义了一个USART1_SendString函数,用于向串口发送字符串。在main函数中,我们首先调用USART1_Init函数进行串口初始化,并且通过一个while循环不停地向串口发送字符串"Hello World!\r\n",同时每发送一次字符串就延时1秒钟。需要注意的是,我们在调用USART_SendData函数之前,先调用了USART_GetFlagStatus函数来判断发送缓冲区是否为空,以保证数据能够正确地发送出去。
以上是一个简单的封装stm32f103c8t6通过USART1串口输出字符串的程序示例,希望对你有所帮助。
阅读全文