编写stm32f103c8t6通过USART2串口输出数值的程序
时间: 2023-07-31 17:12:21 浏览: 72
STM32虚拟串口和OLED输出DHT11、硬件为stm32f103c8t6,程序使用CLion作为STM32的编译环境,使用H
下面是一个简单的示例程序,可以通过USART2串口输出数字:
```
#include "stm32f10x.h"
void USART2_Init(void);
void USART2_SendChar(char ch);
int main(void)
{
SystemInit();
USART2_Init();
uint32_t i = 0;
char buf[16];
while(1)
{
sprintf(buf, "%lu\n", i++);
for(int j = 0; j < strlen(buf); j++)
{
USART2_SendChar(buf[j]);
}
for(int j = 0; j < 1000000; j++); // 延时
}
}
void USART2_Init(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO | RCC_APB2Periph_USART1, ENABLE);
GPIO_InitTypeDef GPIO_InitStruct;
USART_InitTypeDef USART_InitStruct;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStruct);
USART_InitStruct.USART_BaudRate = 115200;
USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStruct.USART_Mode = USART_Mode_Tx;
USART_InitStruct.USART_Parity = USART_Parity_No;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_Init(USART2, &USART_InitStruct);
USART_Cmd(USART2, ENABLE);
}
void USART2_SendChar(char ch)
{
while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET);
USART_SendData(USART2, ch);
}
```
这个程序的功能是每隔一秒钟向串口输出一个数字,从0开始递增。你可以根据需要修改输出的数字范围、递增步长、输出格式等。
阅读全文