Skip to main content
Associate II
May 18, 2026
Solved

Configuration of SDMMC+DMA using STM32H750VBT6 with SDFAT ?

  • May 18, 2026
  • 1 reply
  • 126 views

Recently, I was trying to implement SDMMC+DMA+SDFAT to read and write the SD card of my Class on the STM32H750VBT6. Then I found that the DMA of SDMMC was gone. I saw some online materials saying that MDMA needs to be configured, and some also said that SDMMC does not need to configure DMA as it has its own independent IDMA bus. What is the actual situation when it is directly mounted on AHB? Are there any configuration screenshots and programs of CubeMX for SDMMC+DMA? I'd like to refer to it. Thank you!

Best answer by Saket_Om

Hello @ChenJingtai 

You can refer to the SD_ReadWrite_DMA example in STM32CubeH7. Although this example does not include an .ioc file, you can use its SDMMC configuration as a reference to set up your MX configuration.

1 reply

Saket_OmAnswer
Technical Moderator
May 19, 2026

Hello @ChenJingtai 

You can refer to the SD_ReadWrite_DMA example in STM32CubeH7. Although this example does not include an .ioc file, you can use its SDMMC configuration as a reference to set up your MX configuration.

"To give better visibility on the answered topics, please click on ""Accept as Solution"" on the reply which solved your issue or answered your question.Saket_Om"
Associate II
May 22, 2026

OK,Thank!