对于arduino sketch我有一个c头文件,我保留所有静态方法,让它成为'Utils.h'。现在,在我使用FILE*
指针的方法之一中,我需要调用fseek
方法,但在编译时,Arduino给了我:
error: 'fseek' was not declared in this scope
fseek(stream, 0, 0);
^
Error compiling.
我包含<stdio.h>
,也尝试了其他类似问题的解决方案
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
但没有成功。
我如何在Arduino中使用fseek,或者我可以使用它?
谢谢!