mdk在使用view打印时出现的问题

2019-07-21 01:43发布

在主函数里只放了
#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

int fputc(int ch, FILE *f)
{
    if(DEMCR & TRCENA)
    {
        while(ITM_PORT32(0) == 0);                                                                                                                                                                                                                                                                                      
        ITM_PORT8(0) = ch;
    }
    return ch;
}

int main(void)
{
  printf(" hello world");
}


然后就出现了以下的问题
..OBJTemplate.axf: Error: L6200E: Symbol fputc multiply defined (by usart.o and main.o).
Not enough information to produce a FEEDBACK file.
Not enough information to list image symbols.
Not enough information to list the image map.


求助大佬,我应该怎么改才能实现打印功能





友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
123456lhy
1楼-- · 2019-07-21 05:00
 精彩回答 2  元偷偷看……
Psheng
2楼-- · 2019-07-21 10:57
fputc函数重定义了。 usart里面也有定义的  你要删掉一个

一周热门 更多>