Skip to content
Snippets Groups Projects
Commit 4601348c authored by pippin's avatar pippin Committed by q3k
Browse files

st3m,fs_flash: raise max files to 32

There seems to be a leak somewhere, causing trouble if you have
more than 16ish apps, this is merely a stopgap for initial
power users.
parent 840e6f86
No related branches found
No related tags found
1 merge request!117st3m,fs_flash: raise max files to 32
Pipeline #6574 passed
......@@ -110,7 +110,7 @@ static esp_err_t _st3m_fs_flash_mount_unlocked(void) {
}
FATFS *fs;
esp_vfs_fat_mount_config_t mount_config = { .max_files = 16,
esp_vfs_fat_mount_config_t mount_config = { .max_files = 32,
.format_if_mount_failed = true,
.allocation_unit_size =
CONFIG_WL_SECTOR_SIZE };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment