![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class implements the I2C interface using the Arduino framework and/or APIs. More...
This class implements the I2C interface using the Arduino framework and/or APIs.
NOTE: Currently (8/2023) the 'noStop' semantics of the write/read methods is NOT supported.
#include <Master.h>
Public Member Functions | |
Master (TwoWire &i2cInstance=Wire, uint32_t timeoutMs=50) | |
Constructor. | |
bool | start () noexcept |
See Driver::I2C::Master. | |
void | stop () noexcept |
See Driver::I2C::Master. | |
Result_T | writeToDevice (uint8_t device7BitAddress, size_t numBytesToTransmit, const void *srcData, bool noStop=false) noexcept |
See Driver::I2C::Master. | |
Result_T | readFromDevice (uint8_t device7BitAddress, size_t numBytesToRead, void *dstData, bool noStop=false) |
See Driver::I2C::Master. | |
size_t | setBaudRate (size_t newBaudRateHz) noexcept |
See Driver::I2C::Master. | |
size_t | setTransactionTimeout (size_t maxTimeMs) noexcept |
See Driver::I2C::Master. | |
![]() | |
Result_T | registerWriteByte (uint8_t device7BitAddress, uint8_t reg, uint8_t value, bool noStop=false) |
Convenience method for common I2C operation. | |
template<class READ_TYPE > | |
Result_T | registerRead (uint8_t device7BitAddress, uint8_t reg, READ_TYPE &dstReadResult) |
Convenience method for common I2C operation. | |
virtual | ~Master () |
Virtual destructor. | |
Protected Attributes | |
TwoWire & | m_i2cDevice |
Handle an Ardunio driver instance. | |
uint32_t | m_baudRate |
Current Baud rate. | |
uint32_t | m_timeout_ms |
Current timeout. | |
bool | m_started |
Track my started state. | |
Additional Inherited Members | |
![]() | |
enum | Result_T { eSUCCESS = 0 , eNO_ACK , eTIMEOUT , eNOT_STARTED , eERROR } |
Result codes. More... | |
Driver::I2C::Arduino::Master::Master | ( | TwoWire & | i2cInstance = Wire , |
uint32_t | timeoutMs = 50 |
||
) |
Constructor.
|
virtual |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
virtualnoexcept |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
virtualnoexcept |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
virtualnoexcept |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
virtualnoexcept |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
virtualnoexcept |
See Driver::I2C::Master.
Implements Driver::I2C::Master.
|
protected |
Current Baud rate.
|
protected |
Handle an Ardunio driver instance.
|
protected |
Track my started state.
|
protected |
Current timeout.