mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 16:05:05 +00:00
20 lines
279 B
C
20 lines
279 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <tactility/device.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct SpiPeripheralConfig {
|
|
uint8_t _unused;
|
|
};
|
|
|
|
extern const struct DeviceType SPI_PERIPHERAL_TYPE;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|