Hello,
I've got an application where I want to store a stream of data in a low power mode on SD card, then copy this data elsewhere at regular intervals.
To do this I plan to use the M4 core to handle the incoming data, storing it on SD card using the SDIO peripheral. When it comes time to copy/process the data the A53 core would be started, at which point it has to access the SDIO peripheral/SD card to copy the data elsewhere. While this happens the M4 would buffer incoming data for as long as the transfer takes.
This approach is dependent on being able to reassign usage of the SDIO peripheral from M4 to A53 and back again without powering down either core. I'm not sure of the limitations of the shared peripherals, so I thought I should ask here; Is this possible?
Thanks