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

20 lines
355 B
C++

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