在代码调试过程中,经常使用 printf
函数输出调试信息。我们重定义 printf
函数,通过串口输出调试信息。
step1 main.c
文件中添加头文件
#include "stdio.h"
step2 重定义 fputc
函数,代码添加至 main.c
#ifdef __GNUC__
#define PUTCHAR_PROTOTYPE int
在代码调试过程中,经常使用 printf
函数输出调试信息。我们重定义 printf
函数,通过串口输出调试信息。
step1 main.c
文件中添加头文件
#include "stdio.h"
step2 重定义 fputc
函数,代码添加至 main.c
#ifdef __GNUC__
#define PUTCHAR_PROTOTYPE int