1#ifndef Driver_SPI_STM32_MasterHalfDuplex_h_
2#define Driver_SPI_STM32_MasterHalfDuplex_h_
44 uint32_t timeoutMs = 50 );
49 bool start(
size_t newBaudRateHz = 0 ) noexcept;
56 const
void* srcData ) noexcept;
60 void* dstData ) 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 using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
This class implements the SPI Half-duplex interface for the STM32 family of micro-controller using th...
Definition MasterHalfDuplex.h:33
bool receive(size_t numBytes, void *dstData) noexcept
See Driver::SPI::MasterHalfDuplex.
SPI_HandleTypeDef * m_spiDevice
Handle the low-level ST HAL driver instance.
Definition MasterHalfDuplex.h:64
MasterHalfDuplex(SPI_HandleTypeDef *spiInstance, uint32_t timeoutMs=50)
Constructor.
uint32_t m_timeout
Timeout period for a SPI transaction.
Definition MasterHalfDuplex.h:67
void stop() noexcept
See Driver::SPI::MasterHalfDuplex.
bool transmit(size_t numBytes, const void *srcData) noexcept
See Driver::SPI::MasterHalfDuplex.
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::MasterHalfDuplex.
bool m_started
Track my started state.
Definition MasterHalfDuplex.h:70