c729e8340f
- Implement generic trackball settings - Refactor T-Deck trackball driver into generic driver at `Drivers/gpio-trackball-module` - Automatically bind/unbind trackball devices with LVGL - Automatically load settings for trackball devices on boot
10 lines
156 B
C++
10 lines
156 B
C++
#pragma once
|
|
|
|
namespace tt::lvgl {
|
|
|
|
/**
|
|
* Applies trackball settings (either stored or default ones) to all trackball devices.
|
|
*/
|
|
void initTrackball();
|
|
|
|
} |