FatFS
FF_VOLUMES
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
FF_VOLUMES
FF_VOLUMES macro
Syntax
Show:
Summary
Declaration
from
ffconf.h:213
#define
FF_VOLUMES
CONFIG_FATFS_VOLUME_COUNT
Examples
References
from
examples
Code
Location
#define
FF_VOLUMES
CONFIG_FATFS_VOLUME_COUNT
ffconf.h:213
static
ff_diskio_impl_t
*
s_impls
[
FF_VOLUMES
]
=
{
NULL
}
;
diskio.c:19
const
PARTITION
VolToPart
[
FF_VOLUMES
]
=
{
diskio.c:22
#if
FF_VOLUMES
>
1
diskio.c:24
#if
FF_VOLUMES
>
2
diskio.c:27
#if
FF_VOLUMES
>
3
diskio.c:30
#if
FF_VOLUMES
>
4
diskio.c:33
#if
FF_VOLUMES
>
5
diskio.c:36
#if
FF_VOLUMES
>
6
diskio.c:39
#if
FF_VOLUMES
>
7
diskio.c:42
#if
FF_VOLUMES
>
8
diskio.c:45
#if
FF_VOLUMES
>
9
diskio.c:48
for
(
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
diskio.c:57
assert
(
pdrv
<
FF_VOLUMES
)
;
diskio.c:68
static
const
esp_partition_t
*
s_ff_raw_handles
[
FF_VOLUMES
]
;
diskio_rawflash.c:17
static
size_t
s_sector_size
[
FF_VOLUMES
]
;
diskio_rawflash.c:19
static
size_t
s_sectors_count
[
FF_VOLUMES
]
;
diskio_rawflash.c:20
static
uint8_t
s_initialized
[
FF_VOLUMES
]
;
diskio_rawflash.c:21
if
(
pdrv
>=
FF_VOLUMES
)
{
diskio_rawflash.c:115
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
diskio_rawflash.c:134
static
sdmmc_card_t
*
s_cards
[
FF_VOLUMES
]
=
{
NULL
}
;
diskio_sdmmc.c:14
static
bool
s_disk_status_check_en
[
FF_VOLUMES
]
=
{
}
;
diskio_sdmmc.c:15
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
diskio_sdmmc.c:139
wl_handle_t
ff_wl_handles
[
FF_VOLUMES
]
=
{
diskio_wl.c:18
[
0
...
FF_VOLUMES
-
1
]
=
WL_INVALID_HANDLE
diskio_wl.c:19
if
(
pdrv
>=
FF_VOLUMES
)
{
diskio_wl.c:86
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
diskio_wl.c:103
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
diskio_wl.c:113
#if
FF_VOLUMES
<
1
||
FF_VOLUMES
>
10
ff.c:464
static
FATFS
*
FatFs
[
FF_VOLUMES
]
;
/* Pointer to the filesystem objects (logical drives) */
ff.c:467
i
=
FF_VOLUMES
;
ff.c:3164
if
(
i
<
FF_VOLUMES
)
{
/* If a volume ID is found, get the drive number and strip it */
ff.c:3181
static
SemaphoreHandle_t
Mutex
[
FF_VOLUMES
+
1
]
;
/* Table of mutex handle */
ffsystem.c:66
static
vfs_fat_ctx_t
*
s_fat_ctxs
[
FF_VOLUMES
]
=
{
NULL
}
;
vfs_fat.c:109
for
(
size_t
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat.c:116
return
FF_VOLUMES
;
vfs_fat.c:121
for
(
size_t
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat.c:126
return
FF_VOLUMES
;
vfs_fat.c:131
if
(
ctx
<
FF_VOLUMES
)
{
vfs_fat.c:184
if
(
ctx
==
FF_VOLUMES
)
{
vfs_fat.c:189
if
(
ctx
==
FF_VOLUMES
)
{
vfs_fat.c:235
if
(
ctx
==
FF_VOLUMES
)
{
vfs_fat.c:255
if
(
ctx
==
FF_VOLUMES
)
{
vfs_fat.c:1397
if
(
ctx
==
FF_VOLUMES
)
{
vfs_fat.c:1483
static
vfs_fat_sd_ctx_t
*
s_ctx
[
FF_VOLUMES
]
=
{
}
;
vfs_fat_sdmmc.c:34
static
uint32_t
s_saved_ctx_id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:39
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat_sdmmc.c:48
for
(
uint32_t
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat_sdmmc.c:62
return
FF_VOLUMES
;
vfs_fat_sdmmc.c:67
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:72
uint32_t
ctx_id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:255
if
(
s_saved_ctx_id
==
FF_VOLUMES
)
{
vfs_fat_sdmmc.c:291
assert
(
ctx_id
!=
FF_VOLUMES
)
;
vfs_fat_sdmmc.c:306
uint32_t
ctx_id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:341
if
(
s_saved_ctx_id
==
FF_VOLUMES
)
{
vfs_fat_sdmmc.c:389
assert
(
ctx_id
!=
FF_VOLUMES
)
;
vfs_fat_sdmmc.c:404
s_saved_ctx_id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:452
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:458
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_sdmmc.c:502
static
vfs_fat_spiflash_ctx_t
*
s_ctx
[
FF_VOLUMES
]
=
{
}
;
vfs_fat_spiflash.c:24
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat_spiflash.c:31
for
(
int
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat_spiflash.c:50
for
(
uint32_t
i
=
0
;
i
<
FF_VOLUMES
;
i
++
)
{
vfs_fat_spiflash.c:64
return
FF_VOLUMES
;
vfs_fat_spiflash.c:69
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_spiflash.c:74
uint32_t
ctx_id
=
FF_VOLUMES
;
vfs_fat_spiflash.c:134
assert
(
ctx_id
!=
FF_VOLUMES
)
;
vfs_fat_spiflash.c:188
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_spiflash.c:209
assert
(
id
!=
FF_VOLUMES
)
;
vfs_fat_spiflash.c:212
uint32_t
id
=
FF_VOLUMES
;
vfs_fat_spiflash.c:237
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