Various fixes and improvements (#424)

- Read WiFi provisioning from /data
- Fix for finding apps at /data
- Expose more LVGL functions with TactilityC
This commit is contained in:
NellowTCS
2025-12-05 05:18:23 -07:00
committed by GitHub
parent 62124541e9
commit 65d3d55cc4
3 changed files with 44 additions and 5 deletions
+1 -1
View File
@@ -283,7 +283,7 @@ void prepareFileSystems() {
void registerApps() {
registerInternalApps();
auto data_apps_path = std::format("{}/apps", file::MOUNT_POINT_DATA);
auto data_apps_path = std::format("{}/app", file::MOUNT_POINT_DATA);
if (file::isDirectory(data_apps_path)) {
registerInstalledApps(data_apps_path);
}