mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
19 lines
252 B
C++
19 lines
252 B
C++
#ifndef STA_CORE_RASPI_SPI_HPP
|
|
#define STA_CORE_RASPI_SPI_HPP
|
|
|
|
#include <sta/spi/device.hpp>
|
|
|
|
namespace sta
|
|
{
|
|
class RaspiSPI : SPI
|
|
{
|
|
|
|
};
|
|
|
|
class RaspiSPIDevice : SPIDevice
|
|
{
|
|
|
|
};
|
|
} // namespace sta
|
|
|
|
#endif // STA_CORE_RASPI_HPP
|