编写stm32f103c8t6通过USART2串口输出数值的程序
时间: 2023-07-31 11:12:41 浏览: 78
STM32虚拟串口和OLED输出DHT11、硬件为stm32f103c8t6,程序使用CLion作为STM32的编译环境,使用H
好的,这是一个简单的示例程序,使用USART2串口输出一个整数值:
```c
#include "stm32f10x.h"
void USART2_Init(void);
void USART2_SendChar(char c);
void USART2_SendString(char* str);
void USART2_SendInt(int num);
int main(void)
{
// 初始化USART2串口
USART2_Init();
// 输出一个整数值
USART2_SendInt(123);
while(1);
return 0;
}
void USART2_Init(void)
{
// 使能USART2时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
// 配置USART2 Tx引脚
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART2 Rx引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART2
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 9600;
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(USART2, &USART_InitStructure);
// 使能USART2
USART_Cmd(USART2, ENABLE);
}
void USART2_SendChar(char c)
{
// 等待数据发送完成
while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET);
// 发送一个字符
USART_SendData(USART2, c);
}
void USART2_SendString(char* str)
{
// 发送一个字符串
while (*str)
{
USART2_SendChar(*str++);
}
}
void USART2_SendInt(int num)
{
// 将整数值转换为字符串
char buffer[16];
sprintf(buffer, "%d", num);
// 发送字符串
USART2_SendString(buffer);
}
```
需要注意的是,这个程序假设USART2使用的是默认的引脚配置,即Tx引脚为PA2,Rx引脚为PA3。如果您的硬件使用了不同的引脚,请根据需要修改相应的GPIO初始化代码。
阅读全文