Files
tactility/Drivers/xl9555-module/source/module.cpp
T
2026-07-23 23:28:09 +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 xl9555_driver;
static Driver* const xl9555_drivers[] = {
&xl9555_driver,
nullptr
};
Module xl9555_module = {
.name = "xl9555",
.drivers = xl9555_drivers
};
}