Files
tactility/Drivers/st7123-module/source/module.cpp
T
2026-07-23 23:28:09 +02:00

22 lines
380 B
C++

// SPDX-License-Identifier: Apache-2.0
#include <tactility/driver.h>
#include <tactility/module.h>
extern "C" {
extern Driver st7123_driver;
extern Driver st7123_touch_driver;
static Driver* const st7123_drivers[] = {
&st7123_driver,
&st7123_touch_driver,
nullptr
};
Module st7123_module = {
.name = "st7123",
.drivers = st7123_drivers
};
} // extern "C"