mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 07:55:06 +00:00
16 lines
301 B
C
16 lines
301 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** No device-tree configuration required for the ESP32 WiFi driver. */
|
|
struct Esp32WifiConfig {
|
|
int _unused; /**< Placeholder — driver reads all config from Kconfig. */
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|