You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
esp32_audio_task.h gives the following error line during compilation:
line 35 i2s_config.mclk_multiple = I2S_MCLK_MULTIPLE_DEFAULT;
Error: I2S_MCLK_MULTIPLE_DEFAULT' was not declared in this scope; did you mean 'I2S_MCLK_MULTIPLE_512'?
I've used I2S_MCLK_MULTIPLE_256 and compilation works
after code upload
Error: task_wdt: esp_task_wdt_reset(763): task not found
I've found online solution, but where inserting this code?
TaskHandle_t task_adc_handle;
xTaskCreate(task_adc, "adc_service", 4096, NULL, 2, &task_adc_handle);
The text was updated successfully, but these errors were encountered:
line 35 i2s_config.mclk_multiple = I2S_MCLK_MULTIPLE_DEFAULT;
Error: I2S_MCLK_MULTIPLE_DEFAULT' was not declared in this scope; did you mean 'I2S_MCLK_MULTIPLE_512'?
I've used I2S_MCLK_MULTIPLE_256 and compilation works
Error: task_wdt: esp_task_wdt_reset(763): task not found
I've found online solution, but where inserting this code?
TaskHandle_t task_adc_handle;
xTaskCreate(task_adc, "adc_service", 4096, NULL, 2, &task_adc_handle);
The text was updated successfully, but these errors were encountered: