This commit is contained in:
Ken Van Hoeylandt 2025-08-25 00:47:25 +02:00
parent 18a681a924
commit 34f7642082
3 changed files with 4 additions and 3 deletions

View File

@ -7,12 +7,12 @@
- Expose app::Paths to TactilityC
- Call tt::lvgl::isSyncSet after HAL init and show an error (and crash?) when it is not set.
- External app loading: Check the version of Tactility and check ESP target hardware to check for compatibility.
- Localization of texts (load in boot app from sd?)
- App packaging
- Create more unit tests for `tactility-core`
- Make a URL handler. Use it for handling local files. Match file types with apps.
- Fix Development service: when no SD card is present, the app fails to install. Consider installing to `/data`
- Refactor `PropertiesFile.cpp` to use `tt::file::readLines()` (see TODO in code)
- Localize all apps
## Lower Priority

View File

@ -4,6 +4,7 @@
#include <Tactility/file/File.h>
#include <cstring>
#include <format>
#include <utility>
#include <Tactility/settings/Language.h>

View File

@ -3,5 +3,5 @@
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 3M,
system, data, fat, , 512k,
data, data, fat, , 480k,
system, data, fat, , 450k,
data, data, fat, , 450k,

1 # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x6000,
4 phy_init, data, phy, 0xf000, 0x1000,
5 factory, app, factory, 0x10000, 3M,
6 system, data, fat, , 512k, system, data, fat, , 450k,
7 data, data, fat, , 480k, data, data, fat, , 450k,