Ken Van Hoeylandt bab3eb19bc
Merge develop into main (#343)
- Refactor `AppManifest`: add new fields and rename existing ones
- Parse and validate the manifest from an app that is being installed.
- Remove deprecated `scoped()` from `Lock`
- Create `Tactility/Paths.h`
- App loading at boot now properly parses the manifest files of external apps
- Properly lock both source and destination locations during app install
- Remove LVGL path variants from `AppPaths` and `ServicePaths`
- Removed `xPath` base classes for apps and services. There's now `AppPaths` and `ServicePaths`.
- Renamed app and service paths: "data" and "system" paths are now "user data" and "assets"
2025-09-22 08:03:21 +02:00

53 lines
1.8 KiB
C++

#include "Tactility/app/App.h"
#include "Tactility/app/AppManifest.h"
#include "Tactility/lvgl/Toolbar.h"
#include <Tactility/CoreDefines.h>
#include <Tactility/hal/usb/Usb.h>
#include <lvgl.h>
#define TAG "usb_settings"
namespace tt::app::usbsettings {
static void onRebootMassStorage(TT_UNUSED lv_event_t* event) {
hal::usb::rebootIntoMassStorageSdmmc();
}
class UsbSettingsApp : public App {
void onShow(AppContext& app, lv_obj_t* parent) override {
auto* toolbar = lvgl::toolbar_create(parent, app);
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
if (hal::usb::canRebootIntoMassStorageSdmmc()) {
auto* button = lv_button_create(parent);
auto* label = lv_label_create(button);
lv_label_set_text(label, "Reboot as USB storage");
lv_obj_align(button, LV_ALIGN_CENTER, 0, 0);
lv_obj_add_event_cb(button, onRebootMassStorage, LV_EVENT_SHORT_CLICKED, nullptr);
} else {
bool supported = hal::usb::isSupported();
const char* first = supported ? "USB storage not available:" : "USB driver not supported";
const char* second = supported ? "SD card not mounted" : "on this hardware";
auto* label_a = lv_label_create(parent);
lv_label_set_text(label_a, first);
lv_obj_align(label_a, LV_ALIGN_CENTER, 0, 0);
auto* label_b = lv_label_create(parent);
lv_label_set_text(label_b, second);
lv_obj_align_to(label_b, label_a, LV_ALIGN_OUT_BOTTOM_MID, 0, 4);
}
}
};
extern const AppManifest manifest = {
.appId = "UsbSettings",
.appName = "USB",
.appIcon = LV_SYMBOL_USB,
.appCategory = Category::Settings,
.createApp = create<UsbSettingsApp>
};
} // namespace