mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-08-06 02:27:33 +00:00
Move interfaces to subdir
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
namespace sta
|
||||
{
|
||||
/**
|
||||
* @brief GPIO pin state
|
||||
* @brief GPIO pin state.
|
||||
*/
|
||||
enum class GpioPinState
|
||||
{
|
@@ -14,11 +14,11 @@ namespace sta
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* @brief Block until mutex has been acquired
|
||||
* @brief Block until mutex has been acquired.
|
||||
*/
|
||||
virtual void acquire() = 0;
|
||||
/**
|
||||
* @brief Release mutex
|
||||
* @brief Release mutex.
|
||||
*/
|
||||
virtual void release() = 0;
|
||||
|
@@ -4,10 +4,10 @@
|
||||
#ifndef STA_SPI_DEVICE_HPP
|
||||
#define STA_SPI_DEVICE_HPP
|
||||
|
||||
#include <sta/spi_interface.hpp>
|
||||
#include <sta/intf/spi_interface.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
|
||||
namespace sta
|
@@ -4,11 +4,11 @@
|
||||
#ifndef STA_SPI_INTERFACE_HPP
|
||||
#define STA_SPI_INTERFACE_HPP
|
||||
|
||||
#include <sta/mutex.hpp>
|
||||
#include <sta/intf/mutex.hpp>
|
||||
#include <sta/spi_settings.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
|
||||
namespace sta
|
@@ -1,3 +1,6 @@
|
||||
/**
|
||||
* @brief Signatures for time related functions.
|
||||
*/
|
||||
#ifndef STA_TIME_HPP
|
||||
#define STA_TIME_HPP
|
||||
|
Reference in New Issue
Block a user