db48dfe812
- Standardized keyboard input using Unicode-based key codes across supported devices and the simulator. Keyboards don't emit `LV_KEY_*` anymore. - Refactored lilygo encoder driver into a reusable GPIO rotary encoder driver (see `Drivers/gpio-encoder-module/`). Added more features to the config file. - Improved LVGL keyboard device management, including duplicate prevention and reliable reconnects. - LVGL file mutex now registers with lvgl start/stop - Improved LVGL startup/shutdown stability and memory allocation reliability. - Increased simulator LVGL memory capacity and improved USB device-class handling.
33 lines
815 B
C++
33 lines
815 B
C++
#include <lvgl/lvgl.h>
|
|
#include <tactility/module.h>
|
|
#include <tactility/system_event.h>
|
|
|
|
constexpr auto* TAG = "T-Lora Pager";
|
|
|
|
extern "C" {
|
|
|
|
static void on_boot_completed(struct SystemEvent* /*event*/, void* /*context*/) {
|
|
// The kernel gpio_encoder device is already started by kernel_init(); this just
|
|
// registers it as an LVGL input device, which requires LVGL to be up first.
|
|
lvgl_lock();
|
|
lvgl_unlock();
|
|
}
|
|
|
|
static error_t start() {
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, on_boot_completed, nullptr);
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
static error_t stop() {
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, on_boot_completed);
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
Module lilygo_tlora_pager_module = {
|
|
.name = "lilygo-tlora-pager",
|
|
.start = start,
|
|
.stop = stop
|
|
};
|
|
|
|
}
|