GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Serial_ST_M32F4_InputOutput_h_
2#define Cpl_Io_Serial_ST_M32F4_InputOutput_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 "Cpl/Io/InputOutput.h"
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Serial {
24///
25namespace ST {
26///
27namespace M32F4 {
28
29
30/** This concrete class implements the InputOutput stream interface
31 built on top of ST HAL Layer/SDK.
32
33 The implementation ASSUMES that at most there is only ONE client attempt to
34 use the InputOutput stream at any given time. It is okay to call the
35 read(), write(), etc.from different threads - but the calls CANNOT be
36 concurrent. It is the application's responsibility to provide additional
37 thread-safety/concurrence protection.
38
39 Note: The 'receiver' and the 'transmitter' methods MAY be called concurrently.
40 */
41
43{
44protected:
45 /// Driver
47
48
49public:
50 /// Constructor
53
54 /// Destructor
55 ~InputOutput( void );
56
57
58public:
59 /** This method MUST be used to finish the initialization of the stream
60 and start is underlying drivers. The application is responsible
61 for fully initializing 'uartHdlToUse' BEFORE calling this method.
62
63 NOTE: The stream CAN be restarted (with a possibly different UART handle)
64 if close() has been called.
65 */
66 void start( IRQn_Type uartIrqNum,
67 UART_HandleTypeDef* uartHdlToUse ) noexcept;
68
69
70public:
71 /// Pull in overloaded methods from base class
73
74 /// See Cpl::Io::Input
75 bool read( void* buffer, int numBytes, int& bytesRead );
76
77 /// See Cpl::Io::Input
78 bool available();
79
80 /// This method is used to retreive and optionally clear the RX Error counter
81 size_t getRxErrorsCounts( bool clearCount=true ) noexcept;
82
83public:
84 /// Pull in overloaded methods from base class
85 using Cpl::Io::InputOutput::write;
86
87 /// See Cpl::Io::Output
88 bool write( const void* buffer, int maxBytes, int& bytesWritten );
89
90 /// See Cpl::Io::Output
91 void flush();
92
93 /// See Cpl::Io::IsEos. Note: This method always returns false
94 bool isEos();
95
96 /// See Cpl::Io::Output
97 void close();
98
99};
100
101}; // end namespaces
102};
103};
104};
105};
106#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
virtual bool read(char &c)
Reads a single byte from the stream.
This abstract class defines a interface for operating on an input-output stream (example of a stream ...
Definition InputOutput.h:30
This concrete class implements the InputOutput stream interface built on top of ST HAL Layer/SDK.
Definition InputOutput.h:43
void close()
See Cpl::Io::Output.
bool isEos()
See Cpl::Io::IsEos. Note: This method always returns false.
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
void start(IRQn_Type uartIrqNum, UART_HandleTypeDef *uartHdlToUse) noexcept
This method MUST be used to finish the initialization of the stream and start is underlying drivers.
StreamDriver m_driver
Driver.
Definition InputOutput.h:46
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
size_t getRxErrorsCounts(bool clearCount=true) noexcept
This method is used to retreive and optionally clear the RX Error counter.
void flush()
See Cpl::Io::Output.
InputOutput(Cpl::Container::RingBuffer< uint8_t > &txBuffer, Cpl::Container::RingBuffer< uint8_t > &rxBuffer)
Constructor.
bool available()
See Cpl::Io::Input.
This concrete class implements a non-busy-wait blocking Transmit/Receive Stream UART driver with a SO...
Definition StreamDriver.h:49
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20