From 0a14404160467f1687e6eefea553bb34bf2b5421 Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Thu, 1 May 2025 22:05:32 +0300 Subject: [PATCH] update config.h to simplify testing and comply with previous changes --- config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index aa62e59..00ae722 100644 --- a/config.h +++ b/config.h @@ -21,10 +21,11 @@ /* FS config section */ #define FS_MAX_DEVICE_FILE_NAME_LEN 512 -#define FS_BLOCK_SIZE 4096 +#define FS_BLOCK_SIZE 16 #define FS_MAX_BITMAP_SIZE 64 #define FS_MAX_PATH_LEN 512 #define FS_MAX_OPEN_FD 32 +#define FS_MAX_FNAME_LEN 11 #endif