mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
104 lines
2.1 KiB
C++
104 lines
2.1 KiB
C++
/**
|
|
* @file
|
|
* @brief SPI interface definition.
|
|
*/
|
|
#ifndef STA_SPI_INTERFACE_HPP
|
|
#define STA_SPI_INTERFACE_HPP
|
|
|
|
#include <sta/intf/mutex.hpp>
|
|
#include <sta/spi/settings.hpp>
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
|
|
namespace sta
|
|
{
|
|
/**
|
|
* @brief Interface for SPI hardware.
|
|
*
|
|
* @ingroup staCoreSPI
|
|
*/
|
|
class SpiInterface
|
|
{
|
|
public:
|
|
/**
|
|
* @param mutex Mutex object for managing shared access. Pass nullptr for no access control
|
|
*/
|
|
SpiInterface(Mutex * mutex = nullptr);
|
|
|
|
|
|
/**
|
|
* @brief Send single byte of data.
|
|
*
|
|
* @param value 8-bit value
|
|
*/
|
|
virtual void transfer(uint8_t value) = 0;
|
|
/**
|
|
* @brief Send two bytes of data.
|
|
*
|
|
* @param value 16-bit value
|
|
*/
|
|
virtual void transfer16(uint16_t value) = 0;
|
|
/**
|
|
* @brief Send data from buffer.
|
|
*
|
|
* @param buffer Source buffer
|
|
* @param size Number of bytes to transfer
|
|
*/
|
|
virtual void transfer(const uint8_t * buffer, size_t size) = 0;
|
|
/**
|
|
* @brief Send and receive data simultaneously.
|
|
*
|
|
* @param txBuffer Send buffer
|
|
* @param rxBuffer Receive buffer
|
|
* @param size Number of bytes to transfer
|
|
*/
|
|
virtual void transfer(const uint8_t * txBuffer, uint8_t * rxBuffer, size_t size) = 0;
|
|
/**
|
|
* @brief Read incoming data to buffer.
|
|
*
|
|
* @param buffer Destination buffer
|
|
* @param size Number of bytes to read
|
|
*/
|
|
virtual void receive(uint8_t * buffer, size_t size) = 0;
|
|
|
|
|
|
/**
|
|
* @brief Send byte value repeatedly.
|
|
*
|
|
* @param value 8-bit value to repeat
|
|
* @param count Number of repetitions
|
|
*/
|
|
virtual void fill(uint8_t value, size_t count) = 0;
|
|
|
|
|
|
/**
|
|
* @brief Get SPI interface settings.
|
|
*
|
|
* @return SPI settings
|
|
*/
|
|
virtual const SpiSettings & settings() const = 0;
|
|
|
|
|
|
/**
|
|
* @brief Acquire usage rights to use the interface.
|
|
*
|
|
* Must be called before any I/O operations are executed.
|
|
*/
|
|
virtual void acquire();
|
|
/**
|
|
* @brief Release usage rights for interface.
|
|
*
|
|
* Must be called after last I/O operation.
|
|
*/
|
|
virtual void release();
|
|
|
|
private:
|
|
Mutex * mutex_; /**< Mutex object */
|
|
};
|
|
} // namespace sta
|
|
|
|
|
|
#endif // STA_SPI_INTERFACE_HPP
|