From 3a87979a22a14040c3dbf6283ea022c9d94edb52 Mon Sep 17 00:00:00 2001 From: wh201906 Date: Thu, 13 Apr 2023 01:23:50 +0800 Subject: [PATCH] Add the missing definition for commit 79cfa1d8faa56c390a045d779b997633b357c515 (Although this definition is unused) --- include/pmflash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/pmflash.h b/include/pmflash.h index f0deac507..65e373f8f 100644 --- a/include/pmflash.h +++ b/include/pmflash.h @@ -91,9 +91,9 @@ typedef struct { uint8_t signature[FLASH_MEM_SIGNATURE_LEN]; } PACKED rdv40_validation_t; -// SPIFFS current allocates 128kb of the 256kb available. +// SPIFFS current allocates 192KB of the 256KB available. #ifndef FLASH_SPIFFS_ALLOCATED_SIZE -# define FLASH_SPIFFS_ALLOCATED_SIZE (1024 * 128) +# define FLASH_SPIFFS_ALLOCATED_SIZE (1024 * 192) #endif #endif // __PMFLASH_H