Skip to content
Snippets Groups Projects
Verified Commit 1b48d1db authored by schneider's avatar schneider Committed by rahix
Browse files

fix(fatfs): Reduce maximum open files to 16

parent bd226159
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,11 @@
/* ---------- FAT fs ------------------------------------------------------ */
/* Number of bits to use for indexing into our internal pool of files/directories
* This indirectly specifies the size of the pool as 1^EPIC_FAT_FD_INDEX_BITS
* This indirectly specifies the size of the pool as 2^EPIC_FAT_FD_INDEX_BITS
* Increase if number of open file descriptors is not enough, but be aware of
* memory usage of the pool!
*/
#define EPIC_FAT_FD_INDEX_BITS 8
#define EPIC_FAT_FD_INDEX_BITS 4
#define EPIC_FAT_STATIC_SEMAPHORE 1
void fatfs_init(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment