Searched refs:FF_MAX_SS (Results 1 – 4 of 4) sorted by relevance
132 #if FF_MAX_SS != FF_MIN_SS166 BYTE win[FF_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */211 BYTE buf[FF_MAX_SS]; /* File private data read/write window */
216 #define FF_MAX_SS MAX(FF_SS_SDCARD, FF_SS_WL) macro
234 #if (FF_MAX_SS < FF_MIN_SS) || (FF_MAX_SS != 512 && FF_MAX_SS != 1024 && FF_MAX_SS != 2048 && FF_MA…237 #if FF_MAX_SS == FF_MIN_SS238 #define SS(fs) ((UINT)FF_MAX_SS) /* Fixed sector size */3265 #if FF_MAX_SS != FF_MIN_SS /* Get sector size (multiple sector size cfg only) */3267 if (SS(fs) > FF_MAX_SS || SS(fs) < FF_MIN_SS || (SS(fs) & (SS(fs) - 1))) return FR_DISK_ERR;5568 #if FF_MAX_SS != FF_MIN_SS /* Get sector size of the medium if variable sector size cfg. */5570 if (ss > FF_MAX_SS || ss < FF_MIN_SS || (ss & (ss - 1))) return FR_DISK_ERR;5572 ss = FF_MAX_SS;6022 if (!buf) buf = ff_memalloc(FF_MAX_SS); /* Use heap memory for working buffer */6040 mem_set(buf, 0, FF_MAX_SS);
42 BYTE work_area[FF_MAX_SS];