Skip to main content
Associate II
November 26, 2023
Question

No SDIO option in Cube IDE

  • November 26, 2023
  • 5 replies
  • 5061 views

Hi

I am using nucleo-u5a5zj-q board. MCU is stm32u5a5zjt6qu,

In cube IDE, i saw SDMMC included but no SDIO driver.

May I please know where I could download it?

Thanks for the help.

    This topic has been closed for replies.

    5 replies

    Tesla DeLorean
    Guru
    November 26, 2023

    They changed the peripheral name from SDIO to SDMMC, and then there are code libraries dealing with SD (cards) and MMC (eMMC chips)

    Review Reference Manual coverage of the peripheral

    Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
    sanfranAuthor
    Associate II
    November 26, 2023

    I would like to bring up a sdio card instead of sd. Sdio has their own particular cmd and need to provide by HAL.

    Tesla DeLorean
    Guru
    November 26, 2023

    So a WiFi card or something? Please be a bit more specific.

    Assume whatever "SDIO" functionality you have will need to be ported into the SDMMC peripheral model. Figure which is the shortest path

    STM32Cube_FW_U5_V1.3.0\Drivers\BSP\STM32U575I-EV\stm32u575i_eval_sd.c

    STM32Cube_FW_U5_V1.3.0\Drivers\STM32U5xx_HAL_Driver\Src\stm32u5xx_hal_sd.c

    STM32Cube_FW_U5_V1.3.0\Drivers\STM32U5xx_HAL_Driver\Src\stm32u5xx_hal_mmc.c

    Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..