Przeglądaj źródła

Leaving it more backwards compatible to build with the 1.0.4 release and PIO
For esp32-cores newer than release 1.0.4 (IDF v3.3 or later), you can comment
#define CONFIG_LITTLEFS_FOR_IDF_3_2 in esp_littlefs.c to use vfs_littlefs_utime

lorol 4 lat temu
rodzic
commit
4b8f425ad6
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 2 2
      README.md
  2. 1 1
      src/esp_littlefs.c

+ 2 - 2
README.md

@@ -9,9 +9,9 @@
 - A PR to embed it to esp32 core is made too. See the [PR status here](https://github.com/espressif/arduino-esp32/pull/4096) 
 
 #### Warning: Depends on ESP-IDF version
-- For esp32-core release 1.0.4, uncomment this line of <b>esp_littlefs.c</b>:
+- For esp32-core newer than release 1.0.4 (IDF v3.3 or later) you can comment this line of <b>esp_littlefs.c</b> to use the <b>vfs_littlefs_utime</b> feature:
 ```
-//#define CONFIG_LITTLEFS_FOR_IDF_3_2 
+#define CONFIG_LITTLEFS_FOR_IDF_3_2 
 ```
 
 ### Installation

+ 1 - 1
src/esp_littlefs.c

@@ -5,7 +5,7 @@
  */
 
 //#define LOG_LOCAL_LEVEL 4
-//#define CONFIG_LITTLEFS_FOR_IDF_3_2   /* For old IDF - like in release 1.0.4 */
+#define CONFIG_LITTLEFS_FOR_IDF_3_2   /* For old IDF - like in release 1.0.4 */
 
 #include "esp_log.h"
 #include "esp_spi_flash.h"