From c4f2c541899c31465062c89a9397e1c6aa7b221f Mon Sep 17 00:00:00 2001 From: sonictl Date: Thu, 19 May 2022 12:02:17 +0800 Subject: [PATCH] Update README.md add a comment to make it clear, since platformIO still creating the `spiffs.bin` for filesystem image. The file name `spiffs.bin` is so much CONFUSING! it makes the user fill the LittleFS creating is fail. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f856f8a..4675903 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,8 @@ Read [here](https://github.com/joltwallet/esp_littlefs/blob/master/Kconfig) and ```python Import("env") print("Replace MKSPIFFSTOOL with mklittlefs.exe") - env.Replace (MKSPIFFSTOOL = "mklittlefs.exe") + env.Replace (MKSPIFFSTOOL = "mklittlefs.exe") # PlatformIO now believes it has actually created a SPIFFS + #env.Replace( MKSPIFFSTOOL = env.get("PROJECT_DIR") + '/mklittlefs' ) # use this line if above not work. ``` - Add _mklittlefs.exe_ to project root directory as well.