1#ifndef Driver_SPI_Master_h_
2#define Driver_SPI_Master_h_
51 virtual bool start(
size_t newBaudRateHz = 0 ) noexcept = 0;
54 virtual
void stop() noexcept = 0;
65 void* dstData =
nullptr ) noexcept = 0;
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
virtual bool start(size_t newBaudRateHz=0) noexcept=0
This method is used initialize/start the driver.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept=0
This method writes 'numBytes' and reads 'numBytes' to/from the peripheral device.