使用Keil MDK软件仿真时需要用到printf进行调试输出,本质上stdio.h
中的I/O函数就是用于向标准输出设备输出信息,在编译阶段并不被编译器编译,但在链接阶段,会确定具体的链接目标,一般为显示器。但在STM32单片机中,需要做不同的重定向,如调试窗口、USART、LCD等。
//代码用于调试时的printf输出
#include "stm32f10x.h"
#include <stdio.h>
#define ITM_Port8(n) (*((volatile unsigned char *)(0xE0000000+4*n)))
#define ITM_Port16(n) (*((volatile unsigned short*)(0xE0000000+4*n)))
#define ITM_Port32(n) (*((volatile unsigned long *)(0xE0000000+4*n)))
#define DEMCR (*((volatile unsigned long *)(0xE000EDFC)))
#define TRCENA 0x01000000
struct __FILE { int handle; /* Add whatever you need here */ };
FILE __stdout;
FILE __stdin;
int fputc(int ch, FILE *f) {
if (DEMCR & TRCENA) {
while(ITM_Port32(0) == 0);
ITM_Port8(0) = ch;
}
return(ch);
}
本文标题:STM32F10x软件调试输出重定向
本文连接:https://blog.dextercai.com/archives/70.html
除另行说明,本站文字内容采用创作共用版权 CC-BY-NC-ND 4.0 许可协议,版权归本人所有。
除另行说明,本站图片内容版权归本人所有,任何形式的使用需提前联系。