e4b8ab4586
Made the network component shared between two firmawre
31 lines
871 B
Plaintext
31 lines
871 B
Plaintext
|
|
menu "Calendink Web Server"
|
|
|
|
config CALENDINK_DEPLOY_WEB_PAGES
|
|
bool "Deploy web pages to device's LittleFS"
|
|
default n
|
|
help
|
|
If enabled, the frontend dist/ folder will be flashed
|
|
to the 'www' LittleFS partition during build.
|
|
Disable for fast backend-only iteration.
|
|
|
|
config CALENDINK_WEB_MOUNT_POINT
|
|
string "Website mount point in VFS"
|
|
default "/www"
|
|
help
|
|
VFS path where the LittleFS partition is mounted.
|
|
|
|
config CALENDINK_DISPLAY_WIDTH
|
|
int "LVGL Display Width"
|
|
default 800
|
|
help
|
|
Width of the virtual LVGL display used for image generation.
|
|
|
|
config CALENDINK_DISPLAY_HEIGHT
|
|
int "LVGL Display Height"
|
|
default 480
|
|
help
|
|
Height of the virtual LVGL display used for image generation.
|
|
|
|
endmenu
|