20 lines
367 B
C++
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 Driver* const button_control_drivers[] = {
|
|
&button_control_driver,
|
|
nullptr
|
|
};
|
|
|
|
Module button_control_module = {
|
|
.name = "button-control",
|
|
.drivers = button_control_drivers
|
|
};
|
|
|
|
} // extern "C"
|