From f94a14b85917787523b23f1031193858741f4d7b Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sun, 30 Oct 2022 11:55:07 -0400 Subject: increase the number of file & directory handles for devices with more ram Change-Id: I06f517b3b1388aa43fe1aa9edae53c92d0b137e8 --- firmware/include/fs_defines.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/firmware/include/fs_defines.h b/firmware/include/fs_defines.h index a1938c56b8..f4c8385d8a 100644 --- a/firmware/include/fs_defines.h +++ b/firmware/include/fs_defines.h @@ -45,8 +45,15 @@ /* limits for number of open descriptors - if you increase these values, make certain that the disk cache has enough available buffers */ + +#if MEMORYSIZE < 8 #define MAX_OPEN_FILES 11 #define MAX_OPEN_DIRS 12 +#else +#define MAX_OPEN_FILES 31 +#define MAX_OPEN_DIRS 32 +#endif /* MEMORYSIZE */ + /* internal functions open streams as well; make sure they don't fail if all user descs are busy; this needs to be at least the greatest quantity needed @@ -96,10 +103,7 @@ #if MEMORYSIZE < 8 #define DC_NUM_ENTRIES 32 #define DC_MAP_NUM_ENTRIES 128 -#elif MEMORYSIZE <= 32 -#define DC_NUM_ENTRIES 48 -#define DC_MAP_NUM_ENTRIES 128 -#else /* MEMORYSIZE > 32 */ +#else #define DC_NUM_ENTRIES 64 #define DC_MAP_NUM_ENTRIES 256 #endif /* MEMORYSIZE */ -- cgit v1.2.3