MAX_DIR is only used within FatFs.
 
Symbols
loading...
Files
loading...

MAX_DIR macro

Syntax

#define MAX_DIR 0x200000

References

LocationText
ff.c:325
#define MAX_DIR 0x200000 /* Max size of FAT directory */
ff.c:1479
if (ofs >= (DWORD)((_FS_EXFAT && fs->fs_type == FS_EXFAT) ? MAX_DIR_EX : MAX_DIR) || ofs % SZDIRE) { /* Check range of offset and alignment */
ff.c:1531
if (!dp->sect || ofs >= (DWORD)((_FS_EXFAT && fs->fs_type == FS_EXFAT) ? MAX_DIR_EX : MAX_DIR)) return FR_NO_FILE; /* Report EOT when offset has reached max value */