mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 02:43:15 +00:00
Replace LGPL from past commit with Apache License 2.0 for the newly created projects: - in Platforms/* - TactilityKernel Add license headers to source code in: - in Platforms/* - TactilityKernel - TactilityFreeRtos Updated LICENSE.md
19 lines
352 B
C++
19 lines
352 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 },
|
|
.start_device = nullptr,
|
|
.stop_device = nullptr,
|
|
.api = nullptr,
|
|
.device_type = nullptr,
|
|
.internal = { 0 }
|
|
};
|
|
|
|
}
|