Ken Van Hoeylandt 74bcd979c5 Fixes
2026-07-23 00:42:49 +02:00

20 lines
305 B
C++

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