From a0a2f5702863a58f2dc8edc9cee065dddc48494f Mon Sep 17 00:00:00 2001 From: koolkdev Date: Sun, 26 Mar 2017 00:58:24 +0300 Subject: [PATCH] optimize fat options --- ios_fs/source/fat/fat_opts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios_fs/source/fat/fat_opts.h b/ios_fs/source/fat/fat_opts.h index 8ef3e2f..2f8cbee 100644 --- a/ios_fs/source/fat/fat_opts.h +++ b/ios_fs/source/fat/fat_opts.h @@ -32,13 +32,13 @@ // Max FAT sectors to buffer (min 1) // (mem used is FAT_BUFFERS * FAT_BUFFER_SECTORS * FAT_SECTOR_SIZE) #ifndef FAT_BUFFERS - #define FAT_BUFFERS 1 + #define FAT_BUFFERS 64 #endif // Size of cluster chain cache (can be undefined) // Mem used = FAT_CLUSTER_CACHE_ENTRIES * 4 * 2 // Improves access speed considerably -//#define FAT_CLUSTER_CACHE_ENTRIES 128 +#define FAT_CLUSTER_CACHE_ENTRIES 128 // Include support for writing files (1 / 0)? #ifndef FATFS_INC_WRITE_SUPPORT