mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
## New features - Implement translations for apps - Created `tt::settings::setLanguage` and `::getLanguage()` - External app errors are now reported to the user via an AlertDialog - Store system settings in `/data/settings.properties` - Created a "Region & Language" app and moved the timezone setting there. ## Other changes - Change `/data` and `/system` filesystem sector size from 4096 to 512 bytes to allow for more small files (60+ files of 4kB were over the limit of 256kB for the filesystem) - Increased size of `/data` and `/system` - Moved `tt::time::*` to `tt::settings` - Removed the timezone setting from the "Time & Date" setting app - Reverse encoder direction of Lilygo T-Lora Pager - Improved partability of `Time.cpp` (removed separate set of functions for PC/sim)
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# Software defaults
|
|
# Increase stack size for WiFi (fixes crash after scan)
|
|
CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=3072
|
|
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_FREERTOS_HZ=1000
|
|
CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=2
|
|
CONFIG_FREERTOS_SMP=n
|
|
CONFIG_FREERTOS_UNICORE=n
|
|
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=4096
|
|
CONFIG_FREERTOS_USE_TRACE_FACILITY=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
|
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
|
|
|
|
# Hardware: Main
|
|
CONFIG_TT_BOARD_ELECROW_CROWPANEL_BASIC_35=y
|
|
CONFIG_TT_BOARD_NAME="CrowPanel Basic 3.5"
|
|
CONFIG_TT_BOARD_ID="elecrow-crowpanel-basic-35"
|
|
CONFIG_IDF_TARGET="esp32"
|
|
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
|
|
CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
CONFIG_FLASHMODE_QIO=y
|
|
# LVGL
|
|
CONFIG_LV_DISP_DEF_REFR_PERIOD=10
|
|
CONFIG_LV_DPI_DEF=143
|
|
CONFIG_LV_THEME_DEFAULT_DARK=y
|
|
# Fix for 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 |