/*-----------------------------------------------------------------------*/ /* Low level disk I/O module skeleton for FatFs (C)ChaN, 2014 */ /*-----------------------------------------------------------------------*/ /* If a working storage control module is available, it should be */ /* attached to the FatFs via a glue function rather than modifying it. */ /* This is an example of glue functions to attach various exsisting */ /* storage control modules to the FatFs module with a defined API. */ /*-----------------------------------------------------------------------*/ #include "diskio.h" /* FatFs lower layer API */ #include "sdmmc/sdmmc.h" /*-----------------------------------------------------------------------*/ /* Get Drive Status */ /*-----------------------------------------------------------------------*/ DSTATUS disk_status ( __attribute__((unused)) BYTE pdrv /* Physical drive nmuber to identify the drive */ ) { return RES_OK; } /*-----------------------------------------------------------------------*/ /* Inidialize a Drive */ /*-----------------------------------------------------------------------*/ DSTATUS disk_initialize ( __attribute__((unused)) BYTE pdrv /* Physical drive nmuber to identify the drive */ ) { sdmmc_sdcard_init(); return RES_OK; } /*-----------------------------------------------------------------------*/ /* Read Sector(s) */ /*-----------------------------------------------------------------------*/ DRESULT disk_read ( __attribute__((unused)) BYTE pdrv, /* Physical drive nmuber to identify the drive */ BYTE *buff, /* Data buffer to store read data */ DWORD sector, /* Sector address in LBA */ UINT count /* Number of sectors to read */ ) { if(sdmmc_sdcard_readsectors(sector, count, (BYTE *)buff)) return RES_PARERR; return RES_OK; } /*-----------------------------------------------------------------------*/ /* Write Sector(s) */ /*-----------------------------------------------------------------------*/ #if _USE_WRITE DRESULT disk_write ( __attribute__((unused)) BYTE pdrv, /* Physical drive nmuber to identify the drive */ __attribute__((unused)) const BYTE *buff, /* Data to be written */ __attribute__((unused)) DWORD sector, /* Sector address in LBA */ __attribute__((unused)) UINT count /* Number of sectors to write */ ) { return RES_OK; } #endif /*-----------------------------------------------------------------------*/ /* Miscellaneous Functions */ /*-----------------------------------------------------------------------*/ #if _USE_IOCTL DRESULT disk_ioctl ( __attribute__((unused)) BYTE pdrv, /* Physical drive nmuber (0..) */ __attribute__((unused)) BYTE cmd, /* Control code */ __attribute__((unused)) void *buff /* Buffer to send/receive control data */ ) { return RES_PARERR; } #endif