44 if(disk.nbr < FF_VOLUMES)
46 disk.is_initialized[disk.nbr] = 0;
47 disk.drv[disk.nbr] = drv;
48 disk.lun[disk.nbr] = lun;
50 path[0] = DiskNum +
'0';
87 DiskNum = path[0] -
'0';
88 if(disk.drv[DiskNum] != 0)
90 disk.drv[DiskNum] = 0;
91 disk.lun[DiskNum] = 0;
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_UnLinkDriverEx(char *path, uint8_t lun)
Unlinks a diskio driver and decrements the number of active linked drivers.
uint8_t FATFS_LinkDriver(const Diskio_drvTypeDef *drv, char *path)
Links a compatible diskio driver and increments 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.
Header for ff_gen_drv.c module.
Global Disk IO Drivers structure definition.
Disk IO Driver structure definition.