mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 04:17:28 +00:00
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
menu "ePaper Display DEMO Configuration"
|
|
|
|
config SPIFFS_BASE_ADDR
|
|
hex "SPIFFS Base address"
|
|
range 0x100000 0x1FFE000
|
|
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.
|
|
|
|
config EXAMPLE_USE_WIFI
|
|
bool "Use wifi in TFT Demo"
|
|
default n
|
|
help
|
|
If WiFi is used ntp server will be used to provide the exact time
|
|
and file timestamps will be correct.
|
|
config WIFI_SSID
|
|
string "WiFi SSID"
|
|
depends on EXAMPLE_USE_WIFI
|
|
default "myssid"
|
|
help
|
|
SSID (network name) for the demo to connect to.
|
|
|
|
config WIFI_PASSWORD
|
|
string "WiFi Password"
|
|
depends on EXAMPLE_USE_WIFI
|
|
default "mypassword"
|
|
help
|
|
WiFi password (WPA or WPA2) for the demo to use.
|
|
|
|
|
|
endmenu
|