lib/oofatfs: Update oofatfs library to fix issue with logic not.
From https://github.com/micropython/oofatfs, branch work-R0.13c, commit 3b4ee5a646af2769b3dddfe17d5d866233c1e45b.
This commit is contained in:
parent
62483bb957
commit
350dbb89e6
|
@ -3356,7 +3356,7 @@ static FRESULT validate ( /* Returns FR_OK or FR_INVALID_OBJECT */
|
|||
res = FR_TIMEOUT;
|
||||
}
|
||||
#else
|
||||
if (disk_ioctl(obj->fs->drv, IOCTL_STATUS, &stat) == RES_OK && (!stat & STA_NOINIT)) { /* Test if the phsical drive is kept initialized */
|
||||
if (disk_ioctl(obj->fs->drv, IOCTL_STATUS, &stat) == RES_OK && !(stat & STA_NOINIT)) { /* Test if the phsical drive is kept initialized */
|
||||
res = FR_OK;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue