mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-18 12:24:04 +03:00
style
This commit is contained in:
parent
494e51f2bb
commit
92fed38747
@ -46,7 +46,7 @@ bool migrateFS() {
|
||||
Serial.println(F("Alternative found"));
|
||||
if (fstools.moveFS(LittleFS)) {
|
||||
Serial.println(F("FileSystem Moved New FS contents:"));
|
||||
fstools.fileListIterator(LittleFS, "/", [](File & f) {
|
||||
fstools.fileListIterator(LittleFS, "/", [](File& f) {
|
||||
Serial.printf_P(PSTR(" File: %-30s [%8uB]\n"), f.fullName(), f.size());
|
||||
});
|
||||
return true;
|
||||
|
@ -53,7 +53,7 @@ bool migrateFS() {
|
||||
Serial.println(F("Alternative found"));
|
||||
if (fstools.moveFS(LittleFS_Different)) {
|
||||
Serial.println(F("FileSystem Moved New FS contents:"));
|
||||
fstools.fileListIterator(LittleFS_Different, "/", [](File & f) {
|
||||
fstools.fileListIterator(LittleFS_Different, "/", [](File& f) {
|
||||
Serial.printf_P(PSTR(" File: %-30s [%8uB]\n"), f.fullName(), f.size());
|
||||
});
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user