GM6000 Digital Heater Controller Branch: main
SDX-1330
Master.h
Go to the documentation of this file.
1#ifndef Driver_SPI_STM32_Master_h_
2#define Driver_SPI_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/SPI/Master.h"
17#include "Bsp/Api.h" // Pull's in the (core) Arduino APIs
18#include "SPI.h" // Arduino SPI module
19#include <stdint.h>
20
21/** Maximum buffer size for an output only transfer.
22 */
23#ifndef OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE
24#define OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE 16
25#endif
26
27///
28namespace Driver {
29///
30namespace SPI {
31///
32namespace Arduino {
33
34
35/** This class implements the SPI interface using the Arduino Framework.
36
37 Note: The Pin assignments for SCK, MOSI, MISO are set/determined by the
38 Arduino framework when it creates the SPI, SPI1, SPI2, etc. instances.
39 */
41{
42public:
43 /** SPI Settings (note: needed because the SPISettings class does not
44 allow changing the baudrate once instantiated)
45
46 Mode Clock-Polarity (CPOL) Clock-Phase (CPHA) Output Edge Data Capture
47 ---------- --------------------- ------------------ ----------- ------------
48 SPI_MODE0 0 0 Falling Rising
49 SPI_MODE1 0 1 Rising Falling
50 SPI_MODE2 1 0 Rising Falling
51 SPI_MODE3 1 1 Falling Rising
52 */
54 {
55 uint32_t baudrate; //!< Baudrate in HZ, e.g. 20MHz is 20000000
56 BitOrder bitOrder; //!< Bit order: MSBFIRST, LSBFIRST
57 uint8_t dataMode; //!< Data mode: SPI_MODE0, SPI_MODE1, SPI_MODE2, SPI_MODE3
58
59 /// Constructor
60 SPIConfig_T( uint32_t bRate, BitOrder bOrder, uint8_t dMode )
61 : baudrate( bRate )
62 , bitOrder( bOrder )
63 , dataMode( dMode )
64 {
65 }
66 };
67
68
69public:
70 /** Constructor.
71 */
72 Master( SPIClass& spiInstance,
73 SPIConfig_T spiConfig );
74
75
76public:
77 /// See Driver::SPI::Master
78 bool start( size_t newBaudRateHz = 0 ) noexcept;
79
80 /// See Driver::SPI::Master
81 void stop() noexcept;
82
83 /// See Driver::SPI::Master
84 bool transfer( size_t numBytes,
85 const void* srcData,
86 void* dstData = nullptr ) noexcept;
87
88protected:
89
90 /// Handle the Arduino driver instance
91 SPIClass& m_spiDevice;
92
93 /// Handle the SPI configuration
95
96 /// Temporary buffer need to performing transfer since the Arduino SPI interface uses a single buffer for writing/reading data
98
99 /// Track my started state
101};
102
103
104
105
106}; // end namespaces
107};
108};
109#endif // end header latch
This file defines the common/generic interfaces that all Colony.
#define OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE
Maximum buffer size for an output only transfer.
Definition Master.h:24
This class implements the SPI interface using the Arduino Framework.
Definition Master.h:41
bool m_started
Track my started state.
Definition Master.h:100
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::Master.
SPIConfig_T m_spiConfig
Handle the SPI configuration.
Definition Master.h:94
SPIClass & m_spiDevice
Handle the Arduino driver instance.
Definition Master.h:91
Master(SPIClass &spiInstance, SPIConfig_T spiConfig)
Constructor.
uint8_t m_buf[OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE]
Temporary buffer need to performing transfer since the Arduino SPI interface uses a single buffer for...
Definition Master.h:97
void stop() noexcept
See Driver::SPI::Master.
bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept
See Driver::SPI::Master.
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
namespace
SPI Settings (note: needed because the SPISettings class does not allow changing the baudrate once in...
Definition Master.h:54
uint32_t baudrate
Baudrate in HZ, e.g.
Definition Master.h:55
BitOrder bitOrder
Bit order: MSBFIRST, LSBFIRST.
Definition Master.h:56
uint8_t dataMode
Data mode: SPI_MODE0, SPI_MODE1, SPI_MODE2, SPI_MODE3.
Definition Master.h:57
SPIConfig_T(uint32_t bRate, BitOrder bOrder, uint8_t dMode)
Constructor.
Definition Master.h:60