This commit is contained in:
Aurora 2016-10-08 14:44:25 +02:00
parent e5f40cec5a
commit 22c453e297

View File

@ -37,7 +37,7 @@ DSTATUS disk_initialize (
BYTE pdrv /* Physical drive nmuber to identify the drive */ BYTE pdrv /* Physical drive nmuber to identify the drive */
) )
{ {
DRESULT ret; DSTATUS ret;
static u32 sdmmcInitResult = 4; static u32 sdmmcInitResult = 4;
if(sdmmcInitResult == 4) sdmmcInitResult = sdmmc_sdcard_init(); if(sdmmcInitResult == 4) sdmmcInitResult = sdmmc_sdcard_init();
@ -47,11 +47,11 @@ DSTATUS disk_initialize (
if(!(sdmmcInitResult & 1)) if(!(sdmmcInitResult & 1))
{ {
ctrNandInit(); ctrNandInit();
ret = RES_OK; ret = 0;
} }
else ret = RES_PARERR; else ret = STA_NOINIT;
} }
else ret = (!(sdmmcInitResult & 2)) ? RES_OK : RES_PARERR; else ret = (!(sdmmcInitResult & 2)) ? 0 : STA_NOINIT;
return ret; return ret;
} }