GM6000 Digital Heater Controller Branch: main
SDX-1330
Master.h
Go to the documentation of this file.
1#ifndef Driver_I2C_Master_h_
2#define Driver_I2C_Master_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include <stdint.h>
17#include <stdlib.h>
18
19///
20namespace Driver {
21///
22namespace I2C {
23
24
25/** This class defines a non-platform specific interface for an I2C master device
26 driver. The intended usage is to create ONE driver per physical I2C bus, i.e.
27 the driver instance can shared with multiple clients.
28
29 The driver is NOT thread safe. It is the responsibility of the Application
30 to ensure thread safety when driver is used and/or shared with multiple
31 clients.
32 */
33class Master
34{
35public:
36 /// Result codes
38 {
39 eSUCCESS = 0, //!< Operation was successful
40 eNO_ACK, //!< No acknowledgment received for the device address or the device is not present
41 eTIMEOUT, //!< The operation was aborted due to a timeout error
42 eNOT_STARTED, //!< The driver was not properly started
43 eERROR //!< Generic/non-classified error
44 };
45
46public:
47 /** This method is used initialize/start the driver. To 'restart' the driver,
48 the application must call stop(), then start().
49
50 The method returns true if successful; else false is returned when an
51 error occurred. If false is returned, future read/write calls will always
52 return a failure.
53 */
54 virtual bool start() noexcept = 0;
55
56 /// This method is used to stop/shutdown the driver.
57 virtual void stop() noexcept = 0;
58
59
60public:
61 /** This method writes 'numBytesToTransmit' from 'srcData' to the I2C
62 peripheral device.
63
64 If 'noStop' is true, the driver retains control of the bus at the end
65 of the transfer (no Stop is issued), and the next I2C transaction will
66 begin with a Restart rather than a Start.
67 */
68 virtual Result_T writeToDevice( uint8_t device7BitAddress,
69 size_t numBytesToTransmit,
70 const void* srcData,
71 bool noStop = false ) noexcept = 0;
72
73 /** This method reads 'numBytesToRead' bytes from the I2C peripheral device
74 into 'dstData'. The application is RESPONSIBLE for ensure that 'dstData'
75 is AT LEAST 'numBytesToRead' in size.
76
77 If 'noStop' is true, the driver retains control of the bus at the end
78 of the transfer (no Stop is issued), and the next transfer will begin
79 with a Restart rather than a Start.
80 */
81 virtual Result_T readFromDevice( uint8_t device7BitAddress,
82 size_t numBytesToRead,
83 void* dstData,
84 bool noStop = false ) = 0;
85
86
87public:
88 /// Convenience method for common I2C operation
89 inline Result_T registerWriteByte( uint8_t device7BitAddress, uint8_t reg, uint8_t value, bool noStop = false )
90 {
91 uint8_t buffer[2] ={ reg, value };
92 return writeToDevice( device7BitAddress, sizeof( buffer ), buffer, noStop );
93 }
94
95 /// Convenience method for common I2C operation
96 template <class READ_TYPE>
97 inline Result_T registerRead( uint8_t device7BitAddress, uint8_t reg, READ_TYPE& dstReadResult )
98 {
99 Result_T result;
100 result = writeToDevice( device7BitAddress, sizeof( reg ), &reg, true );
101 if ( result == eSUCCESS )
102 {
103 result = readFromDevice( device7BitAddress, sizeof( dstReadResult ), &dstReadResult );
104 }
105 return result;
106 }
107
108public:
109 /** This method changes the default/current I2C baud-rate. The application
110 is responsible for setting values that are supported by the actual
111 platform hardware. The method returns the previous baud rate setting.
112
113 Baud rate is Hz, e.g. 100kHz is 100000.
114
115 The default baud rate is specific to the concrete driver.
116
117 NOTE: This method can ONLY be called when there is no I2C transaction
118 in progress. The Application is RESPONSIBLE for enforcing this
119 constraint.
120
121 This method can be called before start() is called.
122 */
123 virtual size_t setBaudRate( size_t newBaudRateHz ) noexcept = 0;
124
125 /** This method changes the default/current timeout duration. The timeout
126 duration is the maximum amount of time, in milliseconds, the driver
127 will wait for a I2C transaction to complete. The method returns the
128 previous timeout setting.
129
130 The default timeout is specific to the concrete driver.
131
132 NOTE: This method can ONLY be called when there is no I2C transaction
133 in progress. The Application is RESPONSIBLE for enforcing this
134 constraint.
135
136 This method can be called before start() is called.
137 */
138 virtual size_t setTransactionTimeout( size_t maxTimeMs ) noexcept = 0;
139
140
141public:
142 /// Virtual destructor
143 virtual ~Master() {}
144};
145
146
147
148
149}; // end namespaces
150};
151#endif // end header latch
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.
namespace