From 7676626d8a6b3e675d89b5b83bf3be67017f1f23 Mon Sep 17 00:00:00 2001 From: Jungo Lin Date: Sun, 8 Dec 2024 15:39:14 +0800 Subject: [PATCH] logging: increase the maximum value of LOG_BUFFER_SIZE Increase the maximum value of LOG_BUFFER_SIZE from 64 KB to 1 MB to accommodate varying device requirements. Signed-off-by: Jungo Lin --- subsys/logging/Kconfig.processing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/logging/Kconfig.processing b/subsys/logging/Kconfig.processing index da0a90b8126f75..8f96cbfd15cf45 100644 --- a/subsys/logging/Kconfig.processing +++ b/subsys/logging/Kconfig.processing @@ -122,7 +122,7 @@ endif # LOG_PROCESS_THREAD config LOG_BUFFER_SIZE int "Number of bytes dedicated for the logger internal buffer" default 1024 - range 128 65536 + range 128 1048576 help Number of bytes dedicated for the logger internal buffer.