Skip to content

Commit 6cf7683

Browse files
committed
bt_app: fix task stack overflow
1 parent 9edec3f commit 6cf7683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/user/bt_app_core.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ void bt_app_task_start_up(void)
9898
{
9999
s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t));
100100

101-
xTaskCreatePinnedToCore(bt_app_task, "btAppT", 1536, NULL, configMAX_PRIORITIES - 3, NULL, 0);
101+
xTaskCreatePinnedToCore(bt_app_task, "btAppT", 1920, NULL, configMAX_PRIORITIES - 3, NULL, 0);
102102
}

0 commit comments

Comments
 (0)