42 DSTATUS (*disk_initialize) (BYTE);
43 DSTATUS (*disk_status) (BYTE);
44 DRESULT (*disk_read) (BYTE, BYTE*, DWORD, UINT);
45 DRESULT (*disk_write) (BYTE,
const BYTE*, DWORD, UINT);
46 DRESULT (*disk_ioctl) (BYTE, BYTE,
void*);
54 uint8_t is_initialized[FF_VOLUMES];
56 uint8_t lun[FF_VOLUMES];
uint8_t FATFS_UnLinkDriverEx(char *path, uint8_t lun)
Unlinks a diskio driver and decrements the number of active linked drivers.
uint8_t FATFS_LinkDriverEx(const Diskio_drvTypeDef *drv, char *path, uint8_t lun)
Links a compatible diskio driver/lun id and increments the number of active linked drivers.
uint8_t FATFS_UnLinkDriver(char *path)
Unlinks a diskio driver and decrements the number of active linked drivers.
uint8_t FATFS_GetAttachedDriversNbr(void)
Gets number of linked drivers to the FatFs module.
uint8_t FATFS_LinkDriver(const Diskio_drvTypeDef *drv, char *path)
Links a compatible diskio driver and increments the number of active linked drivers.
Global Disk IO Drivers structure definition.
Disk IO Driver structure definition.