feat: add support for waveshare esp32-s3-rlcd board

This commit is contained in:
Adolfo Reyna
2026-07-09 21:44:49 -04:00
parent e4b95396dd
commit df93252281
13 changed files with 772 additions and 0 deletions
@@ -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 waveshare_esp32_s3_rlcd_module = {
.name = "waveshare-esp32-s3-rlcd",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}