Skip to content

Added a define to format the spiffs in SPIFFS_Test.ino #1662

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 25, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#include "FS.h"
#include "SPIFFS.h"

// Format SPIFFS the first time you run a test
// or else use the SPIFFS plugin to create a partition
// https://github.com/me-no-dev/arduino-esp32fs-plugin
//#define FORMAT_SPIFFS true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uncomment this define :) tests are failing. Maybe rename to FORMAT_SPIFFS_IF_FAILED to be more clear when it will be formatted.


void listDir(fs::FS &fs, const char * dirname, uint8_t levels){
Serial.printf("Listing directory: %s\r\n", dirname);

Expand Down Expand Up @@ -151,7 +156,7 @@ void testFileIO(fs::FS &fs, const char * path){

void setup(){
Serial.begin(115200);
if(!SPIFFS.begin()){
if(!SPIFFS.begin(FORMAT_SPIFFS)){
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not changing it here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need AI. Mine is broken.

Serial.println("SPIFFS Mount Failed");
return;
}
Expand Down