Skip to content
Snippets Groups Projects
Commit 1502f8f3 authored by dx's avatar dx Committed by q3k
Browse files

fix wifi by reducing the stack size of the audio task

parent 0d040c25
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ static void _audio_init(void) {
i2s_init();
//ESP_ERROR_CHECK(i2s_channel_enable(tx_chan));
TaskHandle_t handle;
xTaskCreate(&audio_player_task, "Audio player", 20000, NULL, configMAX_PRIORITIES - 1, &handle);
xTaskCreate(&audio_player_task, "Audio player", 3000, NULL, configMAX_PRIORITIES - 1, &handle);
}
#define LR_PHASE 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment