1#ifndef Driver_SPI_MasterHalfDuplex_h_
2#define Driver_SPI_MasterHalfDuplex_h_
52 virtual bool start(
size_t newBaudRateHz = 0 ) noexcept = 0;
55 virtual
void stop() noexcept = 0;
62 const
void* srcData ) noexcept = 0;
69 void* dstData ) noexcept = 0;
This class defines a non-platform specific interface for an SPI master device driver using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
virtual bool start(size_t newBaudRateHz=0) noexcept=0
This method is used initialize/start the driver.
virtual bool transmit(size_t numBytes, const void *srcData) noexcept=0
This method writes 'numBytes' to the peripheral device.
virtual void stop() noexcept=0
This method is used to stop/shutdown the driver.
virtual bool receive(size_t numBytes, void *dstData) noexcept=0
This method reads 'numBytes' from the peripheral device.