STM32串口输出异常和printf重定向

在调试STM32F1项目时遇到串口接收乱码问题,排除了系统时钟配置错误。分析原因可能是串口配置或printf未重定向。通过关闭KEIL MDK的MicroLib,添加printf重定向代码,但问题仍未解决。最终发现是缺少标准IO头文件,加入"stdio.h"后串口通信恢复正常。总结指出,串口异常需要检查系统时钟、串口配置、标准IO头文件和printf重定向,并强调了警告信息的重要性。
摘要由CSDN通过智能技术生成

使用场景:

今天在调试STM32F1项目的时候,碰到一个有点意思的小问题。
想着新建个工程,把要测试的函数直接移植到新的工程独立做测试。通过串口来输出信息查看。结果发现串口接收乱码。
在这里插入图片描述

在这里插入图片描述

原因分析:

由于STM32的串口我初始化过了,系统外部晶振和倍频系数也改过来。所以能确定不是系统时钟配置错误造成的。
那就肯定是串口相关的配置出了问题。
这里边就有2种可能:
1、串口外设初始化配置出错。(看过参数这边没问题,波特率是配置成115200)
2、printf没有做重定向(估计是这边)。
于是把printf重定向代码加进来。
重定向代码如下:

#pragma import(__use_no_semihosting)

struct __FILE
{
   
	int handle
  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
STM32 中,可以使用重定向输出函数 `printf()` 将输出信息通过串口发送出去。下面是一个简单的示例代码: 1. 首先,需要在 `main()` 函数中初始化串口,例如: ```c #include "stdio.h" #include "stm32f10x.h" #include "stm32f10x_usart.h" void USART_Configuration(void) { USART_InitTypeDef USART_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; /* Enable GPIO clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); /* Enable USART clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); /* Configure USART Tx as alternate function push-pull */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); /* Configure USART Rx as input floating */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; GPIO_Init(GPIOA, &GPIO_InitStructure); /* Configure USART */ 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_Rx | USART_Mode_Tx; USART_Init(USART1, &USART_InitStructure); /* Enable USART */ USART_Cmd(USART1, ENABLE); } ``` 2. 实现 `fputc()` 函数来重定向输出: ```c int fputc(int ch, FILE *f) { USART_SendData(USART1, (uint8_t)ch); /* Wait until the byte is transmitted */ while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET); return ch; } ``` 3. 现在就可以在代码中使用 `printf()` 函数来输出信息了,例如: ```c int main(void) { /* Initialize USART */ USART_Configuration(); /* Output a string */ printf("Hello, world!\r\n"); while (1) { /* Do something */ } } ``` 这样,串口就可以输出 `Hello, world!` 了。需要注意的是,为了使用 `printf()` 函数,需要在代码中包含头文件 `stdio.h`。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值