Add ES3C28P device (#569)

This commit is contained in:
reyna-b
2026-07-19 03:17:19 -04:00
committed by GitHub
parent f9453d8956
commit bd30aa046a
5 changed files with 197 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#include <tactility/module.h>
extern "C" {
static error_t start() {
return ERROR_NONE;
}
static error_t stop() {
return ERROR_NONE;
}
struct Module es3c28p_module = {
.name = "es3c28p",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}