Skip to content
Snippets Groups Projects
Commit 2b349f8c authored by dx's avatar dx
Browse files

fix wifi by reducing the stack size of the audio task

parent 4f24465c
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ static void _audio_init(void) { ...@@ -132,7 +132,7 @@ static void _audio_init(void) {
i2s_init(); i2s_init();
//ESP_ERROR_CHECK(i2s_channel_enable(tx_chan)); //ESP_ERROR_CHECK(i2s_channel_enable(tx_chan));
TaskHandle_t handle; 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 #define LR_PHASE 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment