我们有一个设备,我想使用 printf 函数将消息发送到 IDE 以进行调试。设置:
ARM Cortex-M3 设备
ULINK2接口
uVision4 IDE
我已按照此链接中的说明进行操作,以便能够在“调试(printf)查看器”中查看消息。首先我修改了“retarget.c”文件,将输出重定向到ITM接口:
#include <stdio.h>
#include <rt_misc.h>
#pragma import(__use_no_semihosting_swi)
// Para utilização do saida de debug através do ULINK2
#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;
// Escreve caractere na porta de Debug
int sendchar (int ch) {
if (DEMCR & TRCENA) {
while (ITM_Port32(0) == 0);
ITM_Port8(0) = ch;
}
return(ch);
}
int fputc(int ch, FILE *f) {
return (sendchar(ch));
}
int ferror(FILE *f) {
/* Your implementation of ferror */
return EOF;
}
void _ttywrch(int ch) {
sendchar(ch);
}
void _sys_exit(int return_code) {
label: goto label; /* endless loop */
}
然后我按照说明在uVision4中配置了IMT:
该项目编译良好。我将应用程序下载到设备并开始使用 uVision4 调试会话。在系统初始化之后,我尝试在主函数中使用带有简单消息的 printf,但调试查看器仍然为空。我已经在“sendchar”函数中设置了断点,我可以看到所有行都按预期命中。
有没有人成功地将 printf 与 ULINK2 和 uVision4 一起使用?有没有人知道为什么我在调试查看器窗口中看不到任何输出?
更新
我尝试使用现有的 ITM 函数,从而产生更简单的“retarget.c”:
int fputc(int ch, FILE *f) {
return (ITM_SendChar((uint32_t)ch));
}
然而,调试查看器中没有显示任何输出。当我跳过 printf 函数调用时,IDE 底部会显示“Trace: Data Overflow”,然后是“Trace: Communication Error”。