mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-21 09:25:06 +00:00
21 lines
371 B
C++
21 lines
371 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
extern Driver posix_wifi_driver;
|
|
|
|
static Driver* const platform_posix_drivers[] = {
|
|
&posix_wifi_driver,
|
|
nullptr
|
|
};
|
|
|
|
struct Module platform_posix_module = {
|
|
.name = "platform-posix",
|
|
.drivers = platform_posix_drivers,
|
|
.symbols = nullptr,
|
|
.internal = nullptr
|
|
};
|
|
|
|
}
|