You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When SdFat.h is included it was undefining the F() (flash string) macro.
This causes all strings to go into RAM, as seen in this issue:
esp8266/Arduino#6767
Remove this undef. The F() is only used in a few print statements which
are F()-safe on the 8266 now, and in the SD.h and SDFS.h libs the
function that actually calls print(F(xxxx)) is never used.
0 commit comments