GM6000 Digital Heater Controller Branch: main
SDX-1330
InputOutput.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Serial_Arduino_InputOutput_h
2#define Cpl_Io_Serial_Arduino_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) 2017-2020 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"
16#include "Bsp/Api.h"
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Serial {
24///
25namespace Arduino {
26
27
28/** This concrete class implements the InputOutput stream interface
29 as a wrapper around Arduino Serial class.
30
31 NOTES:
32 1) The read() methods are non-blocking, i.e. if there is no data
33 available - the methods will return 'true' but no data will be
34 read in.
35 2) The write() methods are blocking in the sense that they will
36 not return until all of the specified data has been sent to
37 the UART Hardware peripheral, BUT it is non-blocking in the sense
38 the it does a busy-wait on the UART Hardware instead of thread
39 yielding.
40 */
41
43{
44protected:
45 /// Flag to keep track of started/stopped state
47
48
49public:
50 /** Constructor.
51 */
53
54 /// Destructor
55 virtual ~InputOutput( void );
56
57
58public:
59 /** This method starts UART and must be called BEFORE any of
60 InputOutput methods are called. This allows the instance to
61 be statically created and the initialized/started once the
62 'system is running' (aka in the Arduino setup() method). It
63 is the same as calling 'Serial.begin();
64
65 Note: See the Bsp/Api.h head file for
66 valid 'config' settings.
67
68 Note: If using an instance of this class for CPL Tracing logging, then
69 the start() method MUST be called BEFORE the Cpl::System::Initialize()
70 method is called.
71 */
72 void start( unsigned long baudrate=115200, uint16_t config = SERIAL_8N1 ) noexcept;
73
74 /** This method return true when UART is 'ready'
75 */
76 bool isReady( void );
77
78public:
79 /// Pull in overloaded methods from base class
81
82 /// See Cpl::Io::Input
83 bool read( void* buffer, int numBytes, int& bytesRead );
84
85 /// See Cpl::Io::Input
86 bool available();
87
88
89public:
90 /// Pull in overloaded methods from base class
92
93 /// See Cpl::Io::Output
94 bool write( const void* buffer, int maxBytes, int& bytesWritten );
95
96 /// See Cpl::Io::Output. This method does nothing. See comments about the semantics of the write() methods
97 void flush();
98
99 /// See Cpl::Io::IsEos.
100 bool isEos();
101
102 /// See Cpl::Io::Output. Note: An can be 're-opened' by calling the start() method.
103 void close();
104
105};
106
107}; // end namespaces
108};
109};
110};
111#endif // end header latch
This file defines the common/generic interfaces that all Colony.
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
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class implements the InputOutput stream interface as a wrapper around Arduino Serial cl...
Definition InputOutput.h:43
bool isEos()
See Cpl::Io::IsEos.
void start(unsigned long baudrate=115200, uint16_t config=SERIAL_8N1) noexcept
This method starts UART and must be called BEFORE any of InputOutput methods are called.
bool m_started
Flag to keep track of started/stopped state.
Definition InputOutput.h:46
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Io::Input.
void close()
See Cpl::Io::Output. Note: An can be 're-opened' by calling the start() method.
virtual ~InputOutput(void)
Destructor.
bool isReady(void)
This method return true when UART is 'ready'.
bool available()
See Cpl::Io::Input.
void flush()
See Cpl::Io::Output. This method does nothing. See comments about the semantics of the write() method...
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20