GM6000 Digital Heater Controller Branch: main
SDX-1330
MasterHalfDuplex.h
Go to the documentation of this file.
1#ifndef Driver_SPI_STM32_MasterHalfDuplex_h_
2#define Driver_SPI_STM32_MasterHalfDuplex_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
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 Half-duplex 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 MasterHalfDuplex( SPI_HandleTypeDef* spiInstance,
44 uint32_t timeoutMs = 50 ); // Default timeout is 50ms
45
46
47public:
48 /// See Driver::SPI::MasterHalfDuplex
49 bool start( size_t newBaudRateHz = 0 ) noexcept;
50
51 /// See Driver::SPI::MasterHalfDuplex
52 void stop() noexcept;
53
54 /// See Driver::SPI::MasterHalfDuplex
55 bool transmit( size_t numBytes,
56 const void* srcData ) noexcept;
57
58 /// See Driver::SPI::MasterHalfDuplex
59 bool receive( size_t numBytes,
60 void* dstData ) noexcept;
61
62protected:
63 /// Handle the low-level ST HAL driver instance
64 SPI_HandleTypeDef* m_spiDevice;
65
66 /// Timeout period for a SPI transaction
67 uint32_t m_timeout;
68
69 /// Track my started state
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 using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
This class implements the SPI Half-duplex interface for the STM32 family of micro-controller using th...
Definition MasterHalfDuplex.h:33
bool receive(size_t numBytes, void *dstData) noexcept
See Driver::SPI::MasterHalfDuplex.
SPI_HandleTypeDef * m_spiDevice
Handle the low-level ST HAL driver instance.
Definition MasterHalfDuplex.h:64
MasterHalfDuplex(SPI_HandleTypeDef *spiInstance, uint32_t timeoutMs=50)
Constructor.
uint32_t m_timeout
Timeout period for a SPI transaction.
Definition MasterHalfDuplex.h:67
void stop() noexcept
See Driver::SPI::MasterHalfDuplex.
bool transmit(size_t numBytes, const void *srcData) noexcept
See Driver::SPI::MasterHalfDuplex.
bool start(size_t newBaudRateHz=0) noexcept
See Driver::SPI::MasterHalfDuplex.
bool m_started
Track my started state.
Definition MasterHalfDuplex.h:70
namespace