Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dff.h132 #if FF_MAX_SS != FF_MIN_SS
166 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 */
Dffconf.h216 #define FF_MAX_SS MAX(FF_SS_SDCARD, FF_SS_WL) macro
Dff.c234 #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_SS
238 #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);
/hal_espressif-3.6.0/components/fatfs/test_fatfs_host/
Dtest_fatfs.cpp42 BYTE work_area[FF_MAX_SS];