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 ST HAL APIs
18#include <stdint.h>
19
20///
21namespace Driver {
22///
23namespace SPI {
24///
25namespace STM32 {
26
27
28/** This class implements the SPI interface for the STM32 family of
29 micro-controller using the ST's MX Cube/IDE to configure the SPI peripherals
30 and IO pins
31 */
33{
34public:
35 /** Constructor.
36
37 The 'spiInstance' MUST have already been initialize, i.e. the low
38 level MX_SPIx_Init() from the ST HAL APIs has been called
39
40 TODO: Add support for configuring the SPI interface WITHOUT using
41 ST's MX tools.
42 */
43 Master( SPI_HandleTypeDef* spiInstance,
44 uint32_t timeoutMs = 50 ); // Default timeout is 50ms
45
46
47public:
48 /// See Driver::SPI::Master
49 bool start( size_t newBaudRateHz = 0 ) noexcept;
50
51 /// See Driver::SPI::Master
52 void stop() noexcept;
53
54 /// See Driver::SPI::Master
55 bool transfer( size_t numBytes,
56 const void* srcData,
57 void* dstData = nullptr ) noexcept;
58
59protected:
60
61 /// Handle the low-level ST HAL driver instance
62 SPI_HandleTypeDef* m_spiDevice;
63
64 /// Timeout period for a SPI transaction
65 uint32_t m_timeout;
66
67 /// Track my started state
69};
70
71
72
73
74}; // end namespaces
75};
76};
77#endif // end header latch
This file defines the common/generic interfaces that all Colony.
This class defines a non-platform specific interface for an SPI master device driver.
Definition Master.h:37
This class implements the SPI interface for the STM32 family of micro-controller using the ST's MX Cu...
Definition Master.h:33
SPI_HandleTypeDef * m_spiDevice
Handle the low-level ST HAL driver instance.
Definition Master.h:62
void stop() noexcept
See Driver::SPI::Master.
bool transfer(size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept
See Driver::SPI::Master.
uint32_t m_timeout
Timeout period for a SPI transaction.
Definition Master.h:65
bool m_started
Track my started state.
Definition Master.h:68
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::Master.
Master(SPI_HandleTypeDef *spiInstance, uint32_t timeoutMs=50)
Constructor.
namespace