M5Stack Tab5 support (#449)
* **New Features**
* Added support for M5Stack Tab5: integrated display (ILI9881C MIPI-DSI), touch, and SD card.
* **User Interface**
* Changed toolbar label from "External Apps" to "Installed Apps."
* **Improvements**
* Clarified boot log messages ("Init boot"/"Init boot failed") for better diagnostics.
* Firmware build matrix and configuration updated to include the M5Stack Tab5 target.
This commit is contained in:
committed by
GitHub
parent
10381b10cd
commit
619b5aa53b
@@ -26,7 +26,7 @@ class AppSettingsApp final : public App {
|
||||
public:
|
||||
|
||||
void onShow(TT_UNUSED AppContext& app, lv_obj_t* parent) override {
|
||||
auto* toolbar = lvgl::toolbar_create(parent, "External Apps");
|
||||
auto* toolbar = lvgl::toolbar_create(parent, "Installed Apps");
|
||||
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
|
||||
|
||||
lv_obj_t* list = lv_list_create(parent);
|
||||
|
||||
@@ -80,8 +80,8 @@ void init(const Configuration& configuration) {
|
||||
kernel::publishSystemEvent(kernel::SystemEvent::BootInitUartEnd);
|
||||
|
||||
if (configuration.initBoot != nullptr) {
|
||||
LOGGER.info("Init power");
|
||||
tt_check(configuration.initBoot(), "Init power failed");
|
||||
LOGGER.info("Init boot");
|
||||
tt_check(configuration.initBoot(), "Init boot failed");
|
||||
}
|
||||
|
||||
registerDevices(configuration);
|
||||
|
||||
Reference in New Issue
Block a user