fix(uart/example): Fixed minimal stack size in uart_echo example

This commit is contained in:
aleks
2024-08-27 09:19:07 +02:00
committed by Song Ruo Jing
parent 3ded6819f3
commit 1c9ff00e50

View File

@@ -38,7 +38,7 @@ menu "Echo Example Configuration"
config EXAMPLE_TASK_STACK_SIZE config EXAMPLE_TASK_STACK_SIZE
int "UART echo example task stack size" int "UART echo example task stack size"
range 1024 16384 range 1024 16384
default 2048 default 3072
help help
Defines stack size for UART echo example. Insufficient stack size can cause crash. Defines stack size for UART echo example. Insufficient stack size can cause crash.