i have following problem:
I have 2 tasks running on two different cores on the ESP32.
Task1 initializes the SD Card, writes some data to the SD Card successfully and then is doing nothing but vTaskDelay for testing.
Task2 (Wifi task) initializes wifi in access point mode, accepts a client and receives data. If a specific command is received, the task uses sdmmc_write_sectors to write one sector to the SD Card.
The sdmmc_write_sectors in the wifi task leads to a timeout (error 0x107 means timeout):
Code: Select all
sdmmc_cmd: sdmmc_write_sectors: sdmmc_send_cmd returned 0x107
Thanks for your help!