Skip to content

Commit 5282a99

Browse files
committed
fix(examples): increased BtAppTask task's stack size to avoid overflow
1 parent 244c369 commit 5282a99

File tree

1 file changed

+1
-1
lines changed
  • examples/bluetooth/bluedroid/classic_bt/a2dp_source/main

1 file changed

+1
-1
lines changed

examples/bluetooth/bluedroid/classic_bt/a2dp_source/main/bt_app_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bool bt_app_work_dispatch(bt_app_cb_t p_cback, uint16_t event, void *p_params, i
115115
void bt_app_task_start_up(void)
116116
{
117117
s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t));
118-
xTaskCreate(bt_app_task_handler, "BtAppTask", 2048, NULL, 10, &s_bt_app_task_handle);
118+
xTaskCreate(bt_app_task_handler, "BtAppTask", 3072, NULL, 10, &s_bt_app_task_handle);
119119
}
120120

121121
void bt_app_task_shut_down(void)

0 commit comments

Comments
 (0)