1#ifndef Driver_SPI_STM32_Master_h_
2#define Driver_SPI_STM32_Master_h_
43 Master( SPI_HandleTypeDef* spiInstance,
44 uint32_t timeoutMs = 50 );
49 bool start(
size_t newBaudRateHz = 0 ) noexcept;
57 void* dstData =
nullptr ) noexcept;
This file defines the common/generic interfaces that all Colony.
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
This class implements the SPI interface for the STM32 family of micro-controller using the ST's MX Cu...
Definition Master.h:33
SPI_HandleTypeDef * m_spiDevice
Handle the low-level ST HAL driver instance.
Definition Master.h:62
void stop() noexcept
See Driver::SPI::Master.
bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept
See Driver::SPI::Master.
uint32_t m_timeout
Timeout period for a SPI transaction.
Definition Master.h:65
bool m_started
Track my started state.
Definition Master.h:68
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::Master.
Master(SPI_HandleTypeDef *spiInstance, uint32_t timeoutMs=50)
Constructor.