微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > STM32中用printf代替uart打印数据的方法

STM32中用printf代替uart打印数据的方法

时间:11-11 来源:互联网 点击:
.在程序中添加:(头文件需要添加#include)

#ifdef__GNUC__
#definePUTCHAR_PROTOTYPEint__io_putchar(intch)
#else
#definePUTCHAR_PROTOTYPEintfputc(intch,FILE*f)
#endif
PUTCHAR_PROTOTYPE
{

USART_SendData(USART1,(u8)ch);
while(USART_GetFlagStatus(USART1,USART_FLAG_TC)==RESET);

returnch;
}

IAR:出现identifier "FILE" is undefined,工程option中,如下选折:

需要在的Options -> General Options ->Library Configuration里设置一下函数库,不然printf函数不对,将Library Configuration 中的Library 设置由"Normal"改为"Full"就可以了。


KEIL:在工程属性的 “Target" -> "Code Generation" 选项中勾选 "Use MicroLIB"”

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top