Implement device: CYD-2432S024R (#521)

This commit is contained in:
NellowTCS
2026-04-13 12:59:15 -06:00
committed by GitHub
parent 10ba4f58e2
commit be2cdc0b90
11 changed files with 222 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_2432s024r_module = {
.name = "cyd-2432s024r",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}