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

23 lines
403 B
C++

// SPDX-License-Identifier: Apache-2.0
#include <tactility/driver.h>
#include <tactility/module.h>
extern "C" {
extern Driver aw88298_driver;
extern const ModuleSymbol aw88298_module_symbols[];
static Driver* const aw88298_drivers[] = {
&aw88298_driver,
nullptr
};
Module aw88298_module = {
.name = "aw88298",
.drivers = aw88298_drivers,
.symbols = aw88298_module_symbols
};
}