Add initial support for LilyGO T-HMI S3 with device configuration and… (#509)

This commit is contained in:
Rivair Sabino dos Santos
2026-03-03 18:38:42 -03:00
committed by GitHub
parent 33caf09856
commit 2426c387eb
14 changed files with 292 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <tactility/module.h>
extern "C" {
static error_t start() {
// Empty for now
return ERROR_NONE;
}
static error_t stop() {
// Empty for now
return ERROR_NONE;
}
struct Module lilygo_thmi_s3_module = {
.name = "lilygo-thmi-s3",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}