Skip to content
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion libraries/LittleFS/src/LittleFS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ bool LittleFSFS::begin(bool formatOnFail, const char * basePath, uint8_t maxOpen
esp_vfs_littlefs_conf_t conf = {
.base_path = basePath,
.partition_label = partitionLabel_,
.format_if_mount_failed = false
.format_if_mount_failed = false,
.dont_mount = false
};

esp_err_t err = esp_vfs_littlefs_register(&conf);
Expand Down