ab75d2022d
Event handling: - Added unified event handling for application, system, and Wi‑Fi events. - Updated all apps to reflect event handling changes Wi-Fi: - Refactored event handling from listener interface to task & event group. - Added direct Wi‑Fi radio controls and improved event subscriptions. - Wi‑Fi screens now refresh asynchronously and handle unavailable devices more gracefully. - Enabled Wi‑Fi by default on in dts files, but radio on/off is still done by code. The main reason was reliable event subscription and consistent devicetree states. - Improved Wi‑Fi shutdown cleanup and radio-state handling. Other: - Renamed the Kernel Display app to Display.
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
#include <app/event.h>
|
|
#include <app/manager.h>
|
|
#include <app/scheduler.h>
|
|
|
|
#include <lvgl_window_manager/window_manager.h>
|
|
|
|
#include <tactility/check.h>
|
|
|
|
#include <lvgl.h>
|
|
#include <lvgl/widgets/toolbar.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
static void create_widgets(lv_obj_t* parent, void* userData) {
|
|
lv_obj_t* toolbar = lvgl_toolbar_create(parent, "Title");
|
|
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
|
|
|
|
lv_obj_t* label = lv_label_create(parent);
|
|
lv_label_set_text(label, "Hello, world!");
|
|
lv_obj_align(label, LV_ALIGN_CENTER, 0, 0);
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
AppInstanceId app_instance_id = app_scheduler_current_app_id();
|
|
|
|
struct TaskEventGroup event_group = {0};
|
|
task_event_group_construct(&event_group);
|
|
|
|
struct AppEventSubscription sub = {0};
|
|
check(app_event_subscribe(&sub, &event_group) == ERROR_NONE);
|
|
|
|
WindowId window = window_manager_create(app_instance_id, create_widgets, NULL);
|
|
|
|
bool should_close = false;
|
|
while (!should_close) {
|
|
task_event_group_wait_any(&event_group, NULL, portMAX_DELAY);
|
|
|
|
struct AppEvent event;
|
|
while (app_event_poll(&sub, &event) == ERROR_NONE) {
|
|
if (event.type == APP_EVENT_CLOSE) {
|
|
should_close = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
window_manager_remove(window);
|
|
check(app_event_unsubscribe(&sub) == ERROR_NONE);
|
|
task_event_group_destruct(&event_group);
|
|
|
|
return 0;
|
|
}
|