component/bt: reduce the task stack size

1. some tasks's stack size is reduced and the previous severe audio distortion issue is eliminated
This commit is contained in:
wangmengyang
2016-11-25 11:21:29 +08:00
parent dae40afffb
commit 8e77c39deb
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -194,7 +194,7 @@ void BTU_StartUp(void)
goto error_exit;
xBtuQueue = xQueueCreate(60, sizeof(BtTaskEvt_t));
xTaskCreate(btu_task_thread_handler, "BtuT", 8192, NULL, configMAX_PRIORITIES - 1, &xBtuTaskHandle);
xTaskCreate(btu_task_thread_handler, "BtuT", 4096, NULL, configMAX_PRIORITIES - 1, &xBtuTaskHandle);
btu_task_post(SIG_BTU_START_UP);
/*
// Continue startup on bt workqueue thread.