在程序中增加:(头文件需求增加#include
#ifdef__GNUC__
#definePUTCHAR_PROTOTYPEint__io_putchar(intch)
#else
#definePUTCHAR_PROTOTYPEintfputc(intch,FILE*f)
#endif
PUTCHAR_PROTOTYPE
{
//发送数据代码
returnch;
}
呈现identifier “FILE” is undefined,工程option中,如下选折:
需求在 IAR的Options -> General Options ->Library Configuration里设置一下函数库,否则printf函数不对,将Library Configuration 中的Library 设置由”Normal”改为”Full”就可以了。