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
parent 5d4e5e99c1
commit 5145174858

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.