full functionality of this site and enable such things as forum posting.
solarJack:
I get this error on compile--
Compiling...
• Preprocessing...
• Converting binary files
• Compiling sketch...
◦ cuckoo2_combined.cpp
• Error at line 24 in file FS.h:
‣ memory: No such file or directory
Compiling Failed
Compiling...
• Preprocessing...
• Converting binary files
• Compiling sketch...
◦ cuckoo2_combined.cpp
• Error at line 24 in file FS.h:
‣ memory: No such file or directory
Compiling Failed
sorry-- i listed it twice by mistake..
anyway I am trying for the first time to use FS.h on a wemos uno D1 board..
I looked at line 24 and it does say #include memory
not memory.h
thanks for any help..
matt:
memory
is a file that is included with the compiler, so it should be found. Maybe the include paths need a tweak, though I wouldn't have thought so, it's a pretty standard c++ include location.
matt:
I just, with a fresh installation of the ESP8266 core, compiled this code:
#include <memory>
void setup() {
}
void loop() {
}
It worked fine. There must be something up with your installation...