2026-07-23 00:15:40 +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 const Driver* st7789_i8080_drivers[] = {
&st7789_i8080_driver,
nullptr
};
Module st7789_i8080_module = {
.name = "st7789_i8080",
.drivers = st7789_i8080_drivers
};
} // extern "C"