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
A callback function is defined for mp3decoder. if stack_in_ext is set to true, then crash will happen in the callback function when "fread" is called. Setting stack_in_ext to false solves the problem. Is this expected? why?
ESP32S3
IDF 5.2.2
ADF (not found a version number, but it is pretty updated)
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Crash in callback function when mp3decoder's stack is allocated in PSRAM
Crash in callback function when mp3decoder's stack is allocated in PSRAM (AUD-5688)
Sep 13, 2024
@mike-2020
I think your mp3DecoderReacCb must get data from flash.
For ESP32/ESP32S3, we cannot read or write flash data in a task running on the PSRAM stack.
A callback function is defined for mp3decoder. if stack_in_ext is set to true, then crash will happen in the callback function when "fread" is called. Setting stack_in_ext to false solves the problem. Is this expected? why?
ESP32S3
IDF 5.2.2
ADF (not found a version number, but it is pretty updated)
The text was updated successfully, but these errors were encountered: