2021-11-04 05:57 AM
On a new product we plan to use an STM32U5 MCU to manage a Wireless (WiFi/BT) module and a micro SD card.
As the Wireless module has an SDIO interface we have to use the both SDMMC interfaces of the STM32U5.
Does anyone has already done this kind of stuff? Even on another STM32.
We plan to produce a prototype board and test it with the module and the micro SD card.
But, I'm afraid that there is some incompatibility between SDIO and SD protocol when they are used at the same time.
Or some unexpected limitation.
Solved! Go to Solution.
2021-11-04 08:24 AM
Hello Mr,
STM32U5 MCU embeds 2 SDMMC instances, totally independent. So you can use one instance for mico SD memory, and the second for a wireless module.
Best Regards,
Ismail
2021-11-04 08:24 AM
Hello Mr,
STM32U5 MCU embeds 2 SDMMC instances, totally independent. So you can use one instance for mico SD memory, and the second for a wireless module.
Best Regards,
Ismail
2021-11-04 08:31 AM
I had both cards working on the STM32F779I-EVAL. There are two SDMMC peripheral blocks, they are independent.
Biggest challenge for you would be writing drivers for the wireless module, and reworking the SDMMC stack to accommodate it.
2021-11-05 12:46 AM
OK, thank you very much.
I am reassured.
I'll update the thread when our product works.