大家可能都知道了printf()重定向
#ifdef __GNUC__
/* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
set to 'Yes') calls __io_putchar() */
#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif /* __GNUC__ */
看了fat格式开源文件 ff.c 里面写的是f_open() 然而调用方法不同 不是标准的库.
如题 :单片机如何调用fopen() fprintf()这些库函数呢?
在网上搜了半天无果. |
在线等方法呢 哭哭