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); }