mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 07:55:06 +00:00
21 lines
311 B
C++
21 lines
311 B
C++
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
static error_t start() {
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
static error_t stop() {
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
struct Module elecrow_crowpanel_advance_28_module = {
|
|
.name = "elecrow-crowpanel-advance-28",
|
|
.start = start,
|
|
.stop = stop,
|
|
.symbols = nullptr
|
|
};
|
|
|
|
}
|