1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 18:13:49 +01:00

drivers/{mtd_sdmmc,sdmmc}: reinit card

This commit is contained in:
Fabian Hüßler 2025-03-19 09:57:31 +01:00
parent 0cb550a2cd
commit 6174ca6c29
2 changed files with 3 additions and 2 deletions

View File

@ -41,8 +41,7 @@ static int mtd_sdmmc_init(mtd_dev_t *dev)
/* get the SDMMC device descriptor from SDMMC peripheral index */
mtd_sd->sdmmc = sdmmc_get_dev(mtd_sd->sdmmc_idx);
if ((mtd_sd->sdmmc->init_done == true) ||
(sdmmc_card_init(mtd_sd->sdmmc) == 0)) {
if (sdmmc_card_init(mtd_sd->sdmmc) == 0) {
/* erasing whole sectors is handled internally by the card so you can
delete single blocks (i.e. pages) */
dev->pages_per_sector = 1;

View File

@ -338,6 +338,8 @@ int sdmmc_card_init(sdmmc_dev_t *dev)
assert(dev);
assert(dev->driver);
dev->init_done = false;
/* use driver's card_init function if it defines its own */
if (dev->driver->card_init) {
return dev->driver->card_init(dev);