FatFS
FF_MIN_SS
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
FF_MIN_SS
FF_MIN_SS macro
Syntax
Show:
Summary
Declaration
from
ffconf.h:244
#define
FF_MIN_SS
MIN
(
FF_SS_SDCARD
,
FF_SS_WL
)
Examples
References
from
examples
Code
Location
#define
FF_MIN_SS
MIN
(
FF_SS_SDCARD
,
FF_SS_WL
)
ffconf.h:244
#if
(
FF_MAX_SS
<
FF_MIN_SS
)
||
(
FF_MAX_SS
!=
512
&&
FF_MAX_SS
!=
1024
&&
FF_MAX_SS
!=
2048
&&
FF_MAX_SS
!=
4096
)
||
(
FF_MIN_SS
!=
512
&&
FF_MIN_SS
!=
1024
&&
FF_MIN_SS
!=
2048
&&
FF_MIN_SS
!=
4096
)
ff.c:262
#if
FF_MAX_SS
==
FF_MIN_SS
ff.c:265
if
(
(
w
&
(
w
-
1
)
)
==
0
&&
w
>=
FF_MIN_SS
&&
w
<=
FF_MAX_SS
/* Properness of sector size (512-4096 and 2^n) */
ff.c:3319
#if
FF_MAX_SS
!=
FF_MIN_SS
/* Get sector size (multiple sector size cfg only) */
ff.c:3440
if
(
SS
(
fs
)
>
FF_MAX_SS
||
SS
(
fs
)
<
FF_MIN_SS
||
(
SS
(
fs
)
&
(
SS
(
fs
)
-
1
)
)
)
return
FR_DISK_ERR
;
ff.c:3442
#if
FF_MAX_SS
!=
FF_MIN_SS
ff.c:5964
if
(
ss
>
FF_MAX_SS
||
ss
<
FF_MIN_SS
||
(
ss
&
(
ss
-
1
)
)
)
return
FR_DISK_ERR
;
ff.c:5966
#if
FF_MAX_SS
!=
FF_MIN_SS
ff.h:142
WORD
sector_size
=
FF_MIN_SS
;
// 512
vfs_fat.c:270
#if
FF_MAX_SS
!=
FF_MIN_SS
vfs_fat.c:271
#if
FF_MAX_SS
==
FF_MIN_SS
vfs_fat.c:1455
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out