Implemented device CYD-3248S035C (#522)

This commit is contained in:
NellowTCS
2026-04-13 12:32:33 -06:00
committed by GitHub
parent e64f4ff16b
commit 4dd2762b79
11 changed files with 240 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 cyd_3248s035c_module = {
.name = "cyd-3248s035c",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}