Merge pull request #186 from nanoframework/josesimoes-patch-1

Add call to cache flush on disk write
This commit is contained in:
Fabien Poussin 2019-03-07 17:59:04 +01:00 committed by GitHub
commit 4dfaea2dec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -206,6 +206,9 @@ DRESULT disk_write (
UINT count /* Number of sectors to write (1..255) */
)
{
// invalidate cache on buffer
cacheBufferFlush(buff, count * MMCSD_BLOCK_SIZE);
switch (pdrv) {
#if HAL_USE_MMC_SPI
case MMC: