From 5ec7e1b45e5ada011c2d5c53df1a623ad22b34cd Mon Sep 17 00:00:00 2001 From: fvanroie Date: Wed, 25 Nov 2020 13:41:52 +0100 Subject: [PATCH] Add support for LittleFS --- include/hasp_conf.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/hasp_conf.h b/include/hasp_conf.h index 8d739b66..9a9d4b46 100644 --- a/include/hasp_conf.h +++ b/include/hasp_conf.h @@ -94,6 +94,8 @@ #endif /* Includes */ +#include + #if HASP_USE_SPIFFS > 0 #if defined(ARDUINO_ARCH_ESP32) #include "SPIFFS.h" @@ -104,7 +106,7 @@ #if HASP_USE_LITTLEFS > 0 #if defined(ARDUINO_ARCH_ESP32) -#include +#include "LITTLEFS.h" #endif #include // Include the FS library #include "hasp_filesystem.h"