ESP-IDF
CONFIG_FILE_MAX_SIZE
is only used within ESP-IDF.
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
ESP-IDF
CONFIG_FILE_MAX_SIZE
CONFIG_FILE_MAX_SIZE macro
Syntax
Show:
Summary
Declaration
from
config.c:23
#define
CONFIG_FILE_MAX_SIZE
(
1536
)
Examples
References
from
examples
Code
Location
#define
CONFIG_FILE_MAX_SIZE
(
1536
)
//1.5k
config.c:23
while
(
length
==
CONFIG_FILE_MAX_SIZE
)
{
config.c:384
if
(
w_cnt_total
<
CONFIG_FILE_MAX_SIZE
)
{
config.c:478
int
count
=
(
w_cnt_total
/
CONFIG_FILE_MAX_SIZE
)
;
config.c:487
err
=
nvs_set_blob
(
fp
,
keyname
,
buf
+
i
*
CONFIG_FILE_MAX_SIZE
,
w_cnt_total
-
i
*
CONFIG_FILE_MAX_SIZE
)
;
config.c:493
OSI_TRACE_DEBUG
(
"save keyname = %s, i = %d, %d\n"
,
keyname
,
i
,
w_cnt_total
-
i
*
CONFIG_FILE_MAX_SIZE
)
;
config.c:494
err
=
nvs_set_blob
(
fp
,
keyname
,
buf
+
i
*
CONFIG_FILE_MAX_SIZE
,
CONFIG_FILE_MAX_SIZE
)
;
config.c:496
OSI_TRACE_DEBUG
(
"save keyname = %s, i = %d, %d\n"
,
keyname
,
i
,
CONFIG_FILE_MAX_SIZE
)
;
config.c:497
while
(
length
==
CONFIG_FILE_MAX_SIZE
)
{
config.c:591
err
=
nvs_get_blob
(
fp
,
keyname
,
buf
+
CONFIG_FILE_MAX_SIZE
*
i
,
&
length
)
;
config.c:594
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