GM6000 Digital Heater Controller Branch: main
SDX-1330
Master.h
Go to the documentation of this file.
1#ifndef Driver_I2C_STM32_Master_h_
2#define Driver_I2C_STM32_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 ST HAL APIs
18
19///
20namespace Driver {
21///
22namespace I2C {
23///
24namespace STM32 {
25
26
27/** This class implements the I2C interface for the STM32 family of
28 micro-controller using the ST's MX Cube/IDE to configure the SPI peripherals
29 and IO pins
30
31 NOTE: Currently (8/2023) the 'noStop' semantics of the write/read methods
32 is NOT supported.
33
34 NOTE: The driver is not thread safe. The application must ensure that
35 only one thread is accessing the driver at a time.
36
37 TODO: The driver intermittently fails when the application is writing large
38 amounts of data (>16K ish) and a thread switch occurs (and no it is
39 not because other thread attempts to access the driver). The
40 recommendation is to re-factor the driver to be interrupt based
41 instead of using the STM32 HAL 'polling' model.
42 */
44{
45public:
46 /** Constructor.
47
48 The 'i2cInstance' MUST have already been initialize, i.e. the low
49 level MX_I2Cx_Init() from the ST HAL APIs has been called
50
51 TODO: Add support for configuring the I2C interface WITHOUT using
52 ST's MX tools.
53 */
54 Master( I2C_HandleTypeDef* i2cInstance,
55 uint32_t timeoutMs = 50 ); // Default timeout is 50ms
56
57
58public:
59 /// See Driver::I2C::Master
60 bool start() noexcept;
61
62 /// See Driver::I2C::Master
63 void stop() noexcept;
64
65 /// See Driver::I2C::Master
66 Result_T writeToDevice( uint8_t device7BitAddress,
67 size_t numBytesToTransmit,
68 const void* srcData,
69 bool noStop = false ) noexcept;
70
71 /// See Driver::I2C::Master
72 Result_T readFromDevice( uint8_t device7BitAddress,
73 size_t numBytesToRead,
74 void* dstData,
75 bool noStop = false );
76
77
78 /// See Driver::I2C::Master
79 size_t setBaudRate( size_t newBaudRateHz ) noexcept;
80
81 /// See Driver::I2C::Master
82 size_t setTransactionTimeout( size_t maxTimeMs ) noexcept;
83
84protected:
85
86 /// Handle the low-level ST HAL driver instance
87 I2C_HandleTypeDef* m_i2cDevice;
88
89 /// Timeout period for a SPI transaction
90 uintptr_t m_timeout;
91
92 /// Track my started state
94};
95
96
97
98
99}; // end namespaces
100};
101};
102#endif // end header latch
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
namespace