mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
**New Features** * Runtime font accessors and new symbol fonts for text, launcher, statusbar, and shared icons. * Added font height base setting to device.properties * Text fonts now have 3 sizes: small, default, large **Improvements** * Renamed `UiScale` to `UiDensity` * Statusbar, toolbar and many UI components now compute heights and spacing from fonts/density. * SSD1306 initialization sequence refined for more stable startup. * Multiple image assets replaced by symbol-font rendering. * Many layout improvements related to density, font scaling and icon scaling * Updated folder name capitalization for newer style
40 lines
1.2 KiB
Properties
40 lines
1.2 KiB
Properties
# Increase stack size for Wi-Fi (fixes crash after scan)
|
|
CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=3072
|
|
# Ensure large enough stack for network operations
|
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=6144
|
|
# Fixes static assertion: FLASH and PSRAM Mode configuration are not supported
|
|
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
|
|
# Free up IRAM
|
|
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
|
|
CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y
|
|
CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH=y
|
|
# EmbedTLS
|
|
CONFIG_MBEDTLS_SSL_PROTO_TLS1_3=y
|
|
# LVGL
|
|
CONFIG_LV_USE_USER_DATA=y
|
|
CONFIG_LV_USE_FS_STDIO=y
|
|
CONFIG_LV_FS_STDIO_LETTER=65
|
|
CONFIG_LV_FS_STDIO_PATH=""
|
|
CONFIG_LV_FS_STDIO_CACHE_SIZE=4096
|
|
CONFIG_LV_USE_LODEPNG=y
|
|
CONFIG_LV_USE_BUILTIN_MALLOC=n
|
|
CONFIG_LV_USE_CLIB_MALLOC=y
|
|
CONFIG_LV_USE_MSGBOX=n
|
|
CONFIG_LV_USE_SPINNER=n
|
|
CONFIG_LV_USE_WIN=n
|
|
CONFIG_LV_USE_SNAPSHOT=y
|
|
CONFIG_LV_BUILD_EXAMPLES=n
|
|
CONFIG_LV_BUILD_DEMOS=n
|
|
CONFIG_FREERTOS_HZ=1000
|
|
CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=2
|
|
CONFIG_FREERTOS_SMP=n
|
|
CONFIG_FREERTOS_UNICORE=n
|
|
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=5120
|
|
CONFIG_FREERTOS_USE_TRACE_FACILITY=y
|
|
CONFIG_FATFS_LFN_HEAP=y
|
|
CONFIG_FATFS_VOLUME_COUNT=3
|
|
CONFIG_FATFS_SECTOR_512=y
|
|
CONFIG_WL_SECTOR_SIZE_512=y
|
|
CONFIG_WL_SECTOR_SIZE=512
|
|
CONFIG_WL_SECTOR_MODE_SAFE=y
|
|
CONFIG_WL_SECTOR_MODE=1 |