![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines a non-platform specific interface for an I2C master device driver. More...
This class defines a non-platform specific interface for an I2C master device driver.
The intended usage is to create ONE driver per physical I2C bus, i.e. the driver instance can shared with multiple clients.
The driver is NOT thread safe. It is the responsibility of the Application to ensure thread safety when driver is used and/or shared with multiple clients.
#include <Master.h>
Public Types | |
enum | Result_T { eSUCCESS = 0 , eNO_ACK , eTIMEOUT , eNOT_STARTED , eERROR } |
Result codes. More... | |
Public Member Functions | |
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 | 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 size_t | setBaudRate (size_t newBaudRateHz) noexcept=0 |
This method changes the default/current I2C baud-rate. | |
virtual size_t | setTransactionTimeout (size_t maxTimeMs) noexcept=0 |
This method changes the default/current timeout duration. | |
virtual | ~Master () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
This method reads 'numBytesToRead' bytes from the I2C peripheral device into 'dstData'.
The application is RESPONSIBLE for ensure that 'dstData' is AT LEAST 'numBytesToRead' in size.
If 'noStop' is true, the driver retains control of the bus at the end of the transfer (no Stop is issued), and the next transfer will begin with a Restart rather than a Start.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.
|
inline |
Convenience method for common I2C operation.
|
inline |
Convenience method for common I2C operation.
|
pure virtualnoexcept |
This method changes the default/current I2C baud-rate.
The application is responsible for setting values that are supported by the actual platform hardware. The method returns the previous baud rate setting.
Baud rate is Hz, e.g. 100kHz is 100000.
The default baud rate is specific to the concrete driver.
NOTE: This method can ONLY be called when there is no I2C transaction in progress. The Application is RESPONSIBLE for enforcing this constraint.
This method can be called before start() is called.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.
|
pure virtualnoexcept |
This method changes the default/current timeout duration.
The timeout duration is the maximum amount of time, in milliseconds, the driver will wait for a I2C transaction to complete. The method returns the previous timeout setting.
The default timeout is specific to the concrete driver.
NOTE: This method can ONLY be called when there is no I2C transaction in progress. The Application is RESPONSIBLE for enforcing this constraint.
This method can be called before start() is called.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.
|
pure virtualnoexcept |
This method is used initialize/start the driver.
To 'restart' the driver, the application must call stop(), then start().
The method returns true if successful; else false is returned when an error occurred. If false is returned, future read/write calls will always return a failure.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.
|
pure virtualnoexcept |
This method is used to stop/shutdown the driver.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.
|
pure virtualnoexcept |
This method writes 'numBytesToTransmit' from 'srcData' to the I2C peripheral device.
If 'noStop' is true, the driver retains control of the bus at the end of the transfer (no Stop is issued), and the next I2C transaction will begin with a Restart rather than a Start.
Implemented in Driver::I2C::Arduino::Master, and Driver::I2C::STM32::Master.