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

20 lines
319 B
C++

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