From 40a92dbfabad32e2248501d6ed8808fa1459ff07 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Fri, 24 Mar 2023 10:49:47 +0800 Subject: [PATCH] uart: increase default stack size for nmea example With the old value of 2048 bytes we are right on the stack border when running on S3. Closes https://github.com/espressif/esp-idf/issues/11044 --- .../peripherals/uart/nmea0183_parser/main/Kconfig.projbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/peripherals/uart/nmea0183_parser/main/Kconfig.projbuild b/examples/peripherals/uart/nmea0183_parser/main/Kconfig.projbuild index b0c059adc0..38d62855f5 100644 --- a/examples/peripherals/uart/nmea0183_parser/main/Kconfig.projbuild +++ b/examples/peripherals/uart/nmea0183_parser/main/Kconfig.projbuild @@ -21,7 +21,7 @@ menu "Example Configuration" config NMEA_PARSER_TASK_STACK_SIZE int "NMEA Parser Task Stack Size" range 0 4096 - default 2048 + default 3072 help Stack size of NMEA Parser task.