GM6000 Digital Heater Controller Branch: main
SDX-1330
StreamDriver.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Serial_ST_M32F4_StreamDriver_h_
2#define Cpl_Io_Serial_ST_M32F4_StreamDriver_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#include "colony_config.h"
16#include "Bsp/Api.h"
18#include "Cpl/System/Thread.h"
19
20/** Maximum number of UARTs/instances that are supported */
21#ifndef OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS
22#define OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS 1
23#endif
24
25
26///
27namespace Cpl {
28///
29namespace Io {
30///
31namespace Serial {
32///
33namespace ST {
34///
35namespace M32F4 {
36
37/** This concrete class implements a non-busy-wait blocking Transmit/Receive Stream
38 UART driver with a SOFTWARE FIFO.
39
40 This driver ASSUMES that at most there is only ONE client (per TX/RX operations)
41 attempting to use the driver at any given time. The TX and RX clients can
42 be different clients/threads.
43
44 It is okay to call the start(), stop(), write() from different threads -
45 but the calls CANNOT be concurrent. It is the application's responsibility
46 to provide additional thread-safety/concurrence protection.
47 */
49{
50public:
51 /** Constructor. Note: The driver does not begin operating until start() is
52 called.
53 */
55 Cpl::Container::RingBuffer<uint8_t>& rxBuffer ) noexcept;
56
57public:
58 /** This method starts/enables the driver. Note: The application is
59 RESPONSIBLE for performing the low level initialization (Baud Rate,
60 framing, etc.) of the UART BEFORE this method is called. For the
61 application to change the Baud rate, framing, etc - it must first stop
62 the driver and then restart it.
63 */
64 void start( IRQn_Type uartIrqNum,
65 UART_HandleTypeDef* uartHdl ) noexcept;
66
67 /** This method will stop/disable the driver. The driver can be restarted
68 by call start() again. The state of the contents of the outbound buffer
69 and the byte(s) 'in transmit' when the driver is stop is undetermined.
70 */
71 void stop( void ) noexcept;
72
73
74
75public:
76 /** Transmits the specified number of bytes. The method does not return
77 until all bytes have been transferred to the outbound buffer. The
78 application CANNOT assume that the byte(s) have been physically
79 transmitted on the 'wire' when this method returns. The method returns
80 true if successful; else false is returned When an error is encounter
81 there is no guaranty/information-available with respect to how many (if
82 any) bytes where transmitted.
83 */
84 bool write( const void* data, size_t numBytesToTx ) noexcept;
85
86
87public:
88 /** Receives at most the specified maximum number of bytes. The actual
89 number of bytes received is returned via 'numBytesRx'. The method does
90 not return until at least one byte is available in the inbound buffer.
91 The method returns true if successful; else false is returned.
92
93 NOTE: UART Framing errors are silents discarded, i.e. an incoming
94 byte that is received with an associated framing error is
95 NOT put into the inbound buffer. A free running counter is
96 maintain of the number of framing errors encountered.
97 */
98 bool read( void* data, int maxBytes, int& numBytesRx ) noexcept;
99
100
101 /** This method returns true if at least one byte is available in the
102 inbound buffer.
103 */
104 bool available( void ) const noexcept;
105
106
107 /** This method returns and optionally clears the driver's RX error
108 counter.
109 */
110 size_t getRXErrorsCounts( bool clearCount=true ) noexcept;
111
112protected:
113 /** This method SHOULD only be called when the HAL Transmit operation has
114 completed (aka from the HAL_UART_TxCpltCallback() function).
115
116 This method executes in the context of interrupt service routine (ISR)
117 */
118 void su_txDoneIsr( void ) noexcept;
119
120 /** The method SHOULD only be called when the HAL Receive operation has
121 completed (aka from the HAL_UART_RxCpltCallback() or
122 HAL_UART_ErrorCallback() functions).
123
124 This method executes in the context of interrupt service routine (ISR)
125 */
126 void su_rxDataAndErrorIsr( uint16_t bytesReceived ) noexcept;
127
128
129protected:
130 /** Used to pre-process the HAL_UART_TxCpltCallback() call to the
131 specific Driver instance
132 */
133 static void su_txCompleteCallback( UART_HandleTypeDef* huart ) noexcept;
134
135 /** Used to pre-process the HAL_UARTEx_RxEventCallback() call to the
136 specific Driver instance
137 */
138 static void su_rxEventCompleteCallback( UART_HandleTypeDef *huart, uint16_t bytesReceived ) noexcept;
139
140 /** Used to pre-process the HAL_UART_ErrorCallback() call to the specific
141 Driver instance
142 */
143 static void su_rxErrorCompleteCallback( UART_HandleTypeDef* huart ) noexcept;
144
145private:
146 /// Prevent access to the copy constructor -->Driver can not be copied!
147 StreamDriver( const StreamDriver& m );
148
149 /// Prevent access to the assignment operator -->Driver can not be copied!
150 const StreamDriver& operator=( const StreamDriver& m );
151
152
153protected:
154 /// Used to map a HAL UART Handle to an instance of this class
156 {
157 UART_HandleTypeDef* halHandle; //!< HAL Handle of the UART
158 StreamDriver* driver; //!< Associated CPL driver instance
159 };
160
161protected:
162 /// Handle to my low level hardware
163 UART_HandleTypeDef* m_uartHdl;
164
165 /// Handle of the blocked TX client thread (if there is one)
167
168 /// Handle of the blocked RX client thread (if there is one)
170
171 /// IRQ number of the UART being used
172 IRQn_Type m_uartIrqNum;
173
174 /// Transmit buffer
176
177 /// Receive buffer
179
180 /// A Receive error was encountered
182
183 /// Number of bytes requested to be transmitted by the HAL
184 unsigned m_txSize;
185
186 /// Receive state
188
189 /// Map the HAL UART to a transmitter instance
191};
192
193
194
195} // end namespaces
196}
197}
198}
199}
200#endif // end header latch
This file defines the common/generic interfaces that all Colony.
#define OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS
Maximum number of UARTs/instances that are supported.
Definition StreamDriver.h:22
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This concrete class implements a non-busy-wait blocking Transmit/Receive Stream UART driver with a SO...
Definition StreamDriver.h:49
bool available(void) const noexcept
This method returns true if at least one byte is available in the inbound buffer.
size_t m_errCount
A Receive error was encountered.
Definition StreamDriver.h:181
Cpl::System::Thread * m_rxWaiterPtr
Handle of the blocked RX client thread (if there is one)
Definition StreamDriver.h:169
static void su_rxEventCompleteCallback(UART_HandleTypeDef *huart, uint16_t bytesReceived) noexcept
Used to pre-process the HAL_UARTEx_RxEventCallback() call to the specific Driver instance.
static HalMapping_T m_mappings[OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS]
Map the HAL UART to a transmitter instance.
Definition StreamDriver.h:190
bool write(const void *data, size_t numBytesToTx) noexcept
Transmits the specified number of bytes.
UART_HandleTypeDef * m_uartHdl
Handle to my low level hardware.
Definition StreamDriver.h:163
bool read(void *data, int maxBytes, int &numBytesRx) noexcept
Receives at most the specified maximum number of bytes.
StreamDriver(Cpl::Container::RingBuffer< uint8_t > &txBuffer, Cpl::Container::RingBuffer< uint8_t > &rxBuffer) noexcept
Constructor.
void start(IRQn_Type uartIrqNum, UART_HandleTypeDef *uartHdl) noexcept
This method starts/enables the driver.
void su_txDoneIsr(void) noexcept
This method SHOULD only be called when the HAL Transmit operation has completed (aka from the HAL_UAR...
UART_HandleTypeDef * halHandle
HAL Handle of the UART.
Definition StreamDriver.h:157
bool m_rxActive
Receive state.
Definition StreamDriver.h:187
Cpl::Container::RingBuffer< uint8_t > & m_txBuffer
Transmit buffer.
Definition StreamDriver.h:175
IRQn_Type m_uartIrqNum
IRQ number of the UART being used.
Definition StreamDriver.h:172
void su_rxDataAndErrorIsr(uint16_t bytesReceived) noexcept
The method SHOULD only be called when the HAL Receive operation has completed (aka from the HAL_UART_...
Cpl::System::Thread * m_txWaiterPtr
Handle of the blocked TX client thread (if there is one)
Definition StreamDriver.h:166
Cpl::Container::RingBuffer< uint8_t > & m_rxBuffer
Receive buffer.
Definition StreamDriver.h:178
void stop(void) noexcept
This method will stop/disable the driver.
size_t getRXErrorsCounts(bool clearCount=true) noexcept
This method returns and optionally clears the driver's RX error counter.
StreamDriver * driver
Associated CPL driver instance.
Definition StreamDriver.h:158
static void su_rxErrorCompleteCallback(UART_HandleTypeDef *huart) noexcept
Used to pre-process the HAL_UART_ErrorCallback() call to the specific Driver instance.
static void su_txCompleteCallback(UART_HandleTypeDef *huart) noexcept
Used to pre-process the HAL_UART_TxCpltCallback() call to the specific Driver instance.
unsigned m_txSize
Number of bytes requested to be transmitted by the HAL.
Definition StreamDriver.h:184
Used to map a HAL UART Handle to an instance of this class.
Definition StreamDriver.h:156
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20