diff --git a/code/esp8266.flash.1m0.ld b/code/esp8266.flash.1m0.ld index 1f9b56a8..dbb44e94 100644 --- a/code/esp8266.flash.1m0.ld +++ b/code/esp8266.flash.1m0.ld @@ -1,4 +1,4 @@ -/* Flash Split for 1M chips */ +/* Flash Split for 1M chips, no SPIFFS */ /* sketch 999KB */ /* eeprom 20KB */ diff --git a/code/espurna/espurna.ino b/code/espurna/espurna.ino index a226e790..53c88cca 100644 --- a/code/espurna/espurna.ino +++ b/code/espurna/espurna.ino @@ -119,8 +119,10 @@ void welcome() { DEBUG_MSG_P(PSTR("[INIT] page size: %8u bytes\n"), fs_info.pageSize); DEBUG_MSG_P(PSTR("[INIT] max files: %8u\n"), fs_info.maxOpenFiles); DEBUG_MSG_P(PSTR("[INIT] max length: %8u\n"), fs_info.maxPathLength); - DEBUG_MSG_P(PSTR("\n")); + } else { + DEBUG_MSG_P(PSTR("[INIT] No SPIFFS partition\n")); } + DEBUG_MSG_P(PSTR("\n")); #endif // -------------------------------------------------------------------------