printf函数重定向

Posted prayer521

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了printf函数重定向相关的知识,希望对你有一定的参考价值。

printf函数底层会调用fputc函数

/*重定向c库函数printf到USART1*/
int fputc(int ch, FILE *f)
{
        /*发送一个字节数据USART1 */
        USART_SendData(DEBUG_USART, (uint8_t) ch);
        
        /* 等待发送完毕 */
        while (USART_GetFlagStatus(DEBUG_USART, USART_FLAG_TXE) == RESET);        
    
        return (ch);
}

 

以上是关于printf函数重定向的主要内容,如果未能解决你的问题,请参考以下文章

printf函数重定向

Keil C51重定向printf到串口

printf重定向的学习总结

printf重定向

printf重定向

printf重定向