重定向printf

Posted ZGJ

tags:

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

#include "stdio.h"

#ifdef __GNUC__
#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif 
PUTCHAR_PROTOTYPE
{
HAL_UART_Transmit(&huart2 , (uint8_t *)&ch, 1, 0xFFFF);
return ch;
}

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

printf重定向的学习总结

Keil C51重定向printf到串口

printf 遇到bash重定向

printf函数重定向

printf重定向

如何在 STM32F10x 上重定向 printf()?