GM6000 Digital Heater Controller Branch: main
SDX-1330
Master.h
Go to the documentation of this file.
1#ifndef Driver_I2C_Arduino_Master_h_
2#define Driver_I2C_Arduino_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 "Driver/I2C/Master.h"
17#include "Bsp/Api.h" // Pull's in (the core) Arduino APIs
18#include <Wire.h>
19
20
21/// Default baud rate for the I2C Driver
22#ifndef OPTION_DRIVER_I2C_ARDUINO_DEFAULT_BAUD_RATE
23#define OPTION_DRIVER_I2C_ARDUINO_DEFAULT_BAUD_RATE 100000
24#endif
25
26///
27namespace Driver {
28///
29namespace I2C {
30///
31namespace Arduino {
32
33
34/** This class implements the I2C interface using the Arduino framework and/or
35 APIs.
36
37 NOTE: Currently (8/2023) the 'noStop' semantics of the write/read methods
38 is NOT supported.
39 */
41{
42public:
43 /** Constructor.
44 */
45 Master( TwoWire& i2cInstance = Wire,
46 uint32_t timeoutMs = 50 ); // Default timeout is 50ms
47
48
49public:
50 /// See Driver::I2C::Master
51 bool start() noexcept;
52
53 /// See Driver::I2C::Master
54 void stop() noexcept;
55
56 /// See Driver::I2C::Master
57 Result_T writeToDevice( uint8_t device7BitAddress,
58 size_t numBytesToTransmit,
59 const void* srcData,
60 bool noStop = false ) noexcept;
61
62 /// See Driver::I2C::Master
63 Result_T readFromDevice( uint8_t device7BitAddress,
64 size_t numBytesToRead,
65 void* dstData,
66 bool noStop = false );
67
68
69 /// See Driver::I2C::Master
70 size_t setBaudRate( size_t newBaudRateHz ) noexcept;
71
72 /// See Driver::I2C::Master
73 size_t setTransactionTimeout( size_t maxTimeMs ) noexcept;
74
75protected:
76
77 /// Handle an Ardunio driver instance
78 TwoWire& m_i2cDevice;
79
80 /// Current Baud rate
81 uint32_t m_baudRate;
82
83 /// Current timeout
84 uint32_t m_timeout_ms;
85
86 /// Track my started state
88};
89
90
91
92
93}; // end namespaces
94};
95};
96#endif // end header latch
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
namespace