1#ifndef Driver_I2C_Arduino_Master_h_
2#define Driver_I2C_Arduino_Master_h_
22#ifndef OPTION_DRIVER_I2C_ARDUINO_DEFAULT_BAUD_RATE
23#define OPTION_DRIVER_I2C_ARDUINO_DEFAULT_BAUD_RATE 100000
46 uint32_t timeoutMs = 50 );
58 size_t numBytesToTransmit,
60 bool noStop = false ) noexcept;
64 size_t numBytesToRead,
66 bool noStop = false );
This file defines the common/generic interfaces that all Colony.
This class implements the I2C interface using the Arduino framework and/or APIs.
Definition Master.h:41
Master(TwoWire &i2cInstance=Wire, uint32_t timeoutMs=50)
Constructor.
void stop() noexcept
See Driver::I2C::Master.
TwoWire & m_i2cDevice
Handle an Ardunio driver instance.
Definition Master.h:78
bool start() noexcept
See Driver::I2C::Master.
bool m_started
Track my started state.
Definition Master.h:87
Result_T readFromDevice(uint8_t device7BitAddress, size_t numBytesToRead, void *dstData, bool noStop=false)
See Driver::I2C::Master.
uint32_t m_timeout_ms
Current timeout.
Definition Master.h:84
size_t setBaudRate(size_t newBaudRateHz) noexcept
See Driver::I2C::Master.
size_t setTransactionTimeout(size_t maxTimeMs) 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.
uint32_t m_baudRate
Current Baud rate.
Definition Master.h:81
This class defines a non-platform specific interface for an I2C master device driver.
Definition Master.h:34
Result_T
Result codes.
Definition Master.h:38