2026-07-23 00:15:40 +02:00

20 lines
367 B
C++

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