20 lines
313 B
C++
20 lines
313 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
#include <tactility/driver.h>
|
|
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
extern Driver gt911_driver;
|
|
|
|
static Driver* const gt911_drivers[] = {
|
|
>911_driver,
|
|
nullptr
|
|
};
|
|
|
|
Module gt911_module = {
|
|
.name = "gt911",
|
|
.drivers = gt911_drivers
|
|
};
|
|
|
|
} // extern "C"
|