From 5bc37a701bdccf3ffe83e707c2265a0562631372 Mon Sep 17 00:00:00 2001 From: loRe Date: Wed, 14 Dec 2022 22:55:44 +0800 Subject: [PATCH] Fix wrong environment variable: MKSPIFFSTOOL. (#7537) MKSPIFFSTOOL in PlatformIO has been changed to MKFSTOOL. --- .../LittleFS/examples/LITTLEFS_PlatformIO/littlefsbuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/LittleFS/examples/LITTLEFS_PlatformIO/littlefsbuilder.py b/libraries/LittleFS/examples/LITTLEFS_PlatformIO/littlefsbuilder.py index 72a823489..9cda26f5a 100644 --- a/libraries/LittleFS/examples/LITTLEFS_PlatformIO/littlefsbuilder.py +++ b/libraries/LittleFS/examples/LITTLEFS_PlatformIO/littlefsbuilder.py @@ -1,2 +1,2 @@ Import("env") -env.Replace( MKSPIFFSTOOL=env.get("PROJECT_DIR") + '/mklittlefs' ) # PlatformIO now believes it has actually created a SPIFFS +env.Replace( MKFSTOOL=env.get("PROJECT_DIR") + '/mklittlefs' ) # PlatformIO now believes it has actually created a SPIFFS