mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Fix for `sdkconfig` generation: the keys that contained the MCU type in its name weren't properly upper-cased. - Moved WiFi configuration property files to the user data path of the app instead of a fixed location. - Moved more properties from `device.py` to `sdkconfig/default.properties` - Fix for `device.cmake` device id parsing: separate basic property parsing from device id validation - Created internal `tt::service::wifi::findServiceContext()` - Changed Wi-Fi service id to lowercase (will change it for other services later)
43 lines
1.3 KiB
Properties
43 lines
1.3 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_HEAP_PLACE_FUNCTION_INTO_FLASH=y
|
|
CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH=y
|
|
# EmbedTLS
|
|
CONFIG_MBEDTLS_SSL_PROTO_TLS1_3=y
|
|
# LVGL
|
|
CONFIG_LV_FONT_MONTSERRAT_14=y
|
|
CONFIG_LV_FONT_MONTSERRAT_18=y
|
|
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 |