Home
last modified time | relevance | path

Searched refs:FF_VOLUMES (Results 1 – 4 of 4) sorted by relevance

/fatfs-2.7.6/include/
Dffconf.h196 #define FF_VOLUMES CONFIG_FS_FATFS_VOLUMES macro
198 #define FF_VOLUMES 8 macro
Dff.h125 extern const char* VolumeStr[FF_VOLUMES]; /* User defied volume ID */
/fatfs-2.7.6/
DREADME25 FF_VOLUMES as CONFIG_FS_FATFS_VOLUMES
Dff.c461 #if FF_VOLUMES < 1 || FF_VOLUMES > 10
462 #error Wrong FF_VOLUMES setting
464 static FATFS* FatFs[FF_VOLUMES]; /* Pointer to the filesystem objects (logical drives) */
477 static const char* const VolumeStr[FF_VOLUMES] = {FF_VOLUME_STRS}; /* Pre-defined volume ID */
3108 i = FF_VOLUMES;
3122 } while ((c || tp != tt) && ++i < FF_VOLUMES); /* Repeat for each id until pattern match */
3125 if (i < FF_VOLUMES) { /* If a volume ID is found, get the drive number and strip it */
3142 …} while ((c || (tc != '/' && !IsTerminator(tc))) && ++i < FF_VOLUMES); /* Repeat for each ID until…
3143 if (i < FF_VOLUMES) { /* If a volume ID is found, get the drive number and strip it */
4256 for (i = FF_VOLUMES - 1; i && fs != FatFs[i]; i--) ; /* Set current drive */
[all …]