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
14 lines
287 B
C++
14 lines
287 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
#include <Tactility/Driver.h>
|
|
|
|
extern "C" {
|
|
|
|
extern void register_platform_drivers() {
|
|
extern Driver esp32_gpio_driver;
|
|
driver_construct(&esp32_gpio_driver);
|
|
extern Driver esp32_i2c_driver;
|
|
driver_construct(&esp32_i2c_driver);
|
|
}
|
|
|
|
}
|