mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
19 lines
349 B
C++
19 lines
349 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include <Tactility/drivers/Root.h>
|
|
#include <Tactility/Driver.h>
|
|
|
|
extern "C" {
|
|
|
|
Driver root_driver = {
|
|
.name = "root",
|
|
.compatible = (const char*[]) { "root", nullptr },
|
|
.startDevice = nullptr,
|
|
.stopDevice = nullptr,
|
|
.api = nullptr,
|
|
.deviceType = nullptr,
|
|
.internal = { 0 }
|
|
};
|
|
|
|
}
|