2020-01-29 20:51:49 +00:00
|
|
|
menu "LilyBook Configuration"
|
2020-01-29 17:30:50 +00:00
|
|
|
|
|
|
|
config SPIFFS_BASE_ADDR
|
|
|
|
hex "SPIFFS Base address"
|
2020-02-02 21:13:42 +00:00
|
|
|
# range 0x100000 0x1FFE000
|
2020-01-29 17:30:50 +00:00
|
|
|
default 0x180000
|
|
|
|
help
|
|
|
|
Starting address of the SPIFFS area in ESP32 Flash
|
|
|
|
Write the address in hex format, 0x180000
|
|
|
|
|
|
|
|
config SPIFFS_SIZE
|
|
|
|
int "SPIFFS Size in bytes"
|
|
|
|
range 262144 2097152
|
|
|
|
default 1048576
|
|
|
|
|
|
|
|
config SPIFFS_LOG_BLOCK_SIZE
|
|
|
|
int "SPIFFS Logical block size"
|
|
|
|
range 4098 65536
|
|
|
|
default 8192
|
|
|
|
|
|
|
|
config SPIFFS_LOG_PAGE_SIZE
|
|
|
|
int "SPIFFS Logical page size"
|
|
|
|
range 256 2048
|
|
|
|
default 256
|
|
|
|
help
|
|
|
|
Set it to the phisycal page size og the used SPI Flash chip.
|
|
|
|
|
|
|
|
endmenu
|