1#ifndef Driver_I2C_STM32_Master_h_
2#define Driver_I2C_STM32_Master_h_
54 Master( I2C_HandleTypeDef* i2cInstance,
55 uint32_t timeoutMs = 50 );
67 size_t numBytesToTransmit,
69 bool noStop = false ) noexcept;
73 size_t numBytesToRead,
75 bool noStop = false );
This file defines the common/generic interfaces that all Colony.
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
This class implements the I2C interface for the STM32 family of micro-controller using the ST's MX Cu...
Definition Master.h:44
Result_T writeToDevice(uint8_t device7BitAddress, size_t numBytesToTransmit, const void *srcData, bool noStop=false) noexcept
See Driver::I2C::Master.
void stop() noexcept
See Driver::I2C::Master.
size_t setBaudRate(size_t newBaudRateHz) 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 setTransactionTimeout(size_t maxTimeMs) noexcept
See Driver::I2C::Master.
I2C_HandleTypeDef * m_i2cDevice
Handle the low-level ST HAL driver instance.
Definition Master.h:87
uintptr_t m_timeout
Timeout period for a SPI transaction.
Definition Master.h:90
bool start() noexcept
See Driver::I2C::Master.
Master(I2C_HandleTypeDef *i2cInstance, uint32_t timeoutMs=50)
Constructor.
bool m_started
Track my started state.
Definition Master.h:93