mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
21 lines
278 B
C++
21 lines
278 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
static error_t start() {
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
static error_t stop() {
|
|
return ERROR_NONE;
|
|
}
|
|
|
|
struct Module lvgl_module = {
|
|
.name = "lvgl",
|
|
.start = start,
|
|
.stop = stop
|
|
};
|
|
|
|
}
|