1#ifndef Driver_SPI_STM32_Master_h_
2#define Driver_SPI_STM32_Master_h_
23#ifndef OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE
24#define OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE 16
78 bool start(
size_t newBaudRateHz = 0 ) noexcept;
86 void* dstData =
nullptr ) noexcept;
This file defines the common/generic interfaces that all Colony.
#define OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE
Maximum buffer size for an output only transfer.
Definition Master.h:24
This class implements the SPI interface using the Arduino Framework.
Definition Master.h:41
bool m_started
Track my started state.
Definition Master.h:100
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::Master.
SPIConfig_T m_spiConfig
Handle the SPI configuration.
Definition Master.h:94
SPIClass & m_spiDevice
Handle the Arduino driver instance.
Definition Master.h:91
Master(SPIClass &spiInstance, SPIConfig_T spiConfig)
Constructor.
uint8_t m_buf[OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE]
Temporary buffer need to performing transfer since the Arduino SPI interface uses a single buffer for...
Definition Master.h:97
void stop() noexcept
See Driver::SPI::Master.
bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept
See Driver::SPI::Master.
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
SPI Settings (note: needed because the SPISettings class does not allow changing the baudrate once in...
Definition Master.h:54
uint32_t baudrate
Baudrate in HZ, e.g.
Definition Master.h:55
BitOrder bitOrder
Bit order: MSBFIRST, LSBFIRST.
Definition Master.h:56
uint8_t dataMode
Data mode: SPI_MODE0, SPI_MODE1, SPI_MODE2, SPI_MODE3.
Definition Master.h:57
SPIConfig_T(uint32_t bRate, BitOrder bOrder, uint8_t dMode)
Constructor.
Definition Master.h:60