T-Deck Max & Pro support updates (#582)

- Created kernel driver for T-Deck Max & Pro display (needs work, doesn't refresh reliably on T-Deck Pro)
- Created T-Deck Pro device implementation (incubating)
This commit is contained in:
Ken Van Hoeylandt
2026-07-24 00:17:48 +02:00
committed by GitHub
parent 429125734a
commit 29e80cfd65
26 changed files with 1204 additions and 978 deletions
@@ -0,0 +1,19 @@
// SPDX-License-Identifier: Apache-2.0
#include <tactility/driver.h>
#include <tactility/module.h>
extern Driver gdeq031t10_driver;
extern "C" {
static Driver* const gdeq031t10_drivers[] = {
&gdeq031t10_driver,
nullptr
};
Module gdeq031t10_module = {
.name = "gdeq031t10",
.drivers = gdeq031t10_drivers
};
} // extern "C"