1#ifndef Driver_I2C_Master_h_
2#define Driver_I2C_Master_h_
54 virtual bool start() noexcept = 0;
57 virtual
void stop() noexcept = 0;
69 size_t numBytesToTransmit,
71 bool noStop = false ) noexcept = 0;
82 size_t numBytesToRead,
84 bool noStop = false ) = 0;
91 uint8_t buffer[2] ={ reg, value };
92 return writeToDevice( device7BitAddress,
sizeof( buffer ), buffer, noStop );
96 template <
class READ_TYPE>
100 result =
writeToDevice( device7BitAddress,
sizeof( reg ), ®,
true );
103 result =
readFromDevice( device7BitAddress,
sizeof( dstReadResult ), &dstReadResult );
This class defines a non-platform specific interface for an I2C master device driver.
Definition Master.h:34
Result_T registerWriteByte(uint8_t device7BitAddress, uint8_t reg, uint8_t value, bool noStop=false)
Convenience method for common I2C operation.
Definition Master.h:89
Result_T registerRead(uint8_t device7BitAddress, uint8_t reg, READ_TYPE &dstReadResult)
Convenience method for common I2C operation.
Definition Master.h:97
virtual size_t setTransactionTimeout(size_t maxTimeMs) noexcept=0
This method changes the default/current timeout duration.
virtual bool start() 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 Result_T writeToDevice(uint8_t device7BitAddress, size_t numBytesToTransmit, const void *srcData, bool noStop=false) noexcept=0
This method writes 'numBytesToTransmit' from 'srcData' to the I2C peripheral device.
virtual Result_T readFromDevice(uint8_t device7BitAddress, size_t numBytesToRead, void *dstData, bool noStop=false)=0
This method reads 'numBytesToRead' bytes from the I2C peripheral device into 'dstData'.
Result_T
Result codes.
Definition Master.h:38
@ eTIMEOUT
The operation was aborted due to a timeout error.
Definition Master.h:41
@ eNOT_STARTED
The driver was not properly started.
Definition Master.h:42
@ eERROR
Generic/non-classified error.
Definition Master.h:43
@ eNO_ACK
No acknowledgment received for the device address or the device is not present.
Definition Master.h:40
@ eSUCCESS
Operation was successful.
Definition Master.h:39
virtual ~Master()
Virtual destructor.
Definition Master.h:143
virtual size_t setBaudRate(size_t newBaudRateHz) noexcept=0
This method changes the default/current I2C baud-rate.