Skip to content

Commit

Permalink
esp32 defualt not include <LittleFS.h>
Browse files Browse the repository at this point in the history
  • Loading branch information
moononournation committed Jun 14, 2021
1 parent 0b6a2de commit 694c3b5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Arduino_GFX *gfx = new Arduino_ILI9341(bus, TFT_RST, 3 /* rotation */, false /*
#include <SD.h>
#elif defined(ESP32)
#include <FFat.h>
#include <LittleFS.h>
// #include <LittleFS.h>
#include <SPIFFS.h>
#include <SD.h>
#elif defined(ESP8266)
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewer/ImgViewerBmp/ImgViewerBmp.ino
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Arduino_GFX *gfx = new Arduino_ILI9341(bus, TFT_RST, 3 /* rotation */, false /*
#include <SD.h>
#elif defined(ESP32)
#include <FFat.h>
#include <LittleFS.h>
// #include <LittleFS.h>
#include <SPIFFS.h>
#include <SD.h>
#elif defined(ESP8266)
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewer/ImgViewerJpeg/ImgViewerJpeg.ino
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Arduino_GFX *gfx = new Arduino_ILI9341(bus, TFT_RST, 3 /* rotation */, false /*
#include <SD.h>
#elif defined(ESP32)
#include <FFat.h>
#include <LittleFS.h>
// #include <LittleFS.h>
#include <SPIFFS.h>
#include <SD.h>
#elif defined(ESP8266)
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewer/ImgViewerMjpeg/ImgViewerMjpeg.ino
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Arduino_GFX *gfx = new Arduino_ILI9341(bus, TFT_RST, 3 /* rotation */, false /*
#include <SD.h>
#elif defined(ESP32)
#include <FFat.h>
#include <LittleFS.h>
// #include <LittleFS.h>
#include <SPIFFS.h>
#include <SD.h>
#elif defined(ESP8266)
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewer/ImgViewerPng/ImgViewerPng.ino
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Arduino_GFX *gfx = new Arduino_ILI9341(bus, TFT_RST, 3 /* rotation */, false /*
#include <SD.h>
#elif defined(ESP32)
#include <FFat.h>
#include <LittleFS.h>
// #include <LittleFS.h>
#include <SPIFFS.h>
#include <SD.h>
#elif defined(ESP8266)
Expand Down

0 comments on commit 694c3b5

Please sign in to comment.