mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
- Auto-select widgets in Launcher and apps with toolbars on devices without touch. - Improved USB HID input reliability, cleanup - Updated PSRAM settings to improve boot stability on supported devices. - Prevented duplicate Wi-Fi event subscriptions during screen rebuilds. - Updated docs - Fixes in WifiManage and WifiConnect - Reduced main task stack size - Moved USB HID stack size to PSRAM when available - app_manager_find_manifest() now returns a copy instead of a pointer
601 B
601 B
Key Conventions
- Shared cross-platform code uses
#ifdef ESP_PLATFORMfor ESP32-specific paths. Code inPlatforms/PlatformEsp32/is already ESP-only and does not need guards around ESP-IDF includes. - The
Drivers/directory contains hardware drivers (display controllers, touch controllers, PMICs, etc.) — each is its own CMake component. Modules/contains cross-cutting modules. e.g.lvgl-module(LVGL task management).Data/system/andData/data/are flashed as FAT filesystem images on ESP32.- Translations are in
Translations/as CSV files, generated viagenerate.py.