From 0c9c335123366f1d6722f767f7063e81828d9a41 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 6 Mar 2017 22:13:49 +0100 Subject: [PATCH] esp32: increase stack to 3072 --- platform/freertos/btstack_run_loop_freertos_single_threaded.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/freertos/btstack_run_loop_freertos_single_threaded.c b/platform/freertos/btstack_run_loop_freertos_single_threaded.c index 3e726e8e5..671195b47 100644 --- a/platform/freertos/btstack_run_loop_freertos_single_threaded.c +++ b/platform/freertos/btstack_run_loop_freertos_single_threaded.c @@ -174,7 +174,7 @@ static void btstack_run_loop_freertos_single_threaded_task(void *pvParameter){ static void btstack_run_loop_freertos_single_threaded_execute(void) { // use dedicated task, might not be needed in all cases - xTaskCreate(&btstack_run_loop_freertos_single_threaded_task, "btstack_task", 2048, NULL, 5, NULL); + xTaskCreate(&btstack_run_loop_freertos_single_threaded_task, "btstack_task", 3072, NULL, 5, NULL); // btstack_run_loop_freertos_single_threaded_task(NULL); }