mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
Move interfaces to subdir
This commit is contained in:
parent
f8666b69c8
commit
01312ef97d
@ -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
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <sta/mutex.hpp>
|
||||
#include <sta/intf/mutex.hpp>
|
||||
|
||||
|
||||
namespace sta
|
@ -1,4 +1,4 @@
|
||||
#include <sta/spi_device.hpp>
|
||||
#include <sta/intf/spi_device.hpp>
|
||||
|
||||
#include <sta/assert.hpp>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <sta/spi_interface.hpp>
|
||||
#include <sta/intf/spi_interface.hpp>
|
||||
|
||||
|
||||
namespace sta
|
@ -1,9 +1,9 @@
|
||||
#include <sta/uart.hpp>
|
||||
#include <sta/intf/uart.hpp>
|
||||
|
||||
#include <sta/printf.hpp>
|
||||
|
||||
#include <cstring>
|
||||
#include <cinttypes>
|
||||
#include <cstring>
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user