GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Driver
TPipe
Tx.h
Go to the documentation of this file.
1
#ifndef Driver_Tpipe_Tx_h_
2
#define Driver_Tpipe_Tx_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/Text/String.h
"
16
#include <
string.h
>
17
18
///
19
namespace
Driver
{
20
///
21
namespace
TPipe {
22
23
/** This abstract class defines the 'Transmit Command' interface for the
24
TPipe.
25
*/
26
class
Tx
27
{
28
public
:
29
/** Synchronously transmits a complete 'text command'. The method will
30
provide the proper TPipe framing and send the framed contents through
31
the pipe.
32
33
The method returns true once the frame data has been transferred to
34
the TPipe's outbound stream. If an a Stream error occurred the method
35
returns false.
36
37
NOTE: The method will block if there is currently a transmission of a
38
frame in progress.
39
*/
40
virtual
bool
sendCommand
(
const
char
* completeCommandText,
size_t
numBytes )
noexcept
= 0;
41
42
/// Convenience method to send a command that is contain in Text string object
43
inline
bool
sendCommand
(
Cpl::Text::String
& command )
noexcept
44
{
45
return
sendCommand
( command.getString(), command.length() );
46
}
47
48
/// Convenience method to send a command that is a contained in a null terminated string
49
inline
bool
sendCommand
(
const
char
* commandString )
noexcept
50
{
51
return
sendCommand
( commandString, strlen( commandString ) );
52
}
53
54
/** This is an OPTIMIZATION - use with care!!
55
56
The method sends the data un-encoded to speed up the transfer of large
57
commands. THe application is responsible for managing the framing
58
*/
59
virtual
bool
sendRawCommand
(
const
char
* completeCommandText,
size_t
numBytes )
noexcept
= 0;
60
61
public
:
62
/// Virtual destructor
63
virtual
~Tx
() {}
64
};
65
66
67
};
// end namespaces
68
};
69
#endif
// end header latch
String.h
Cpl::Text::String
This abstract class defines the operations that can be before on a NULL terminated string.
Definition
String.h:40
Driver::TPipe::Tx
This abstract class defines the 'Transmit Command' interface for the TPipe.
Definition
Tx.h:27
Driver::TPipe::Tx::sendCommand
virtual bool sendCommand(const char *completeCommandText, size_t numBytes) noexcept=0
Synchronously transmits a complete 'text command'.
Driver::TPipe::Tx::~Tx
virtual ~Tx()
Virtual destructor.
Definition
Tx.h:63
Driver::TPipe::Tx::sendCommand
bool sendCommand(Cpl::Text::String &command) noexcept
Convenience method to send a command that is contain in Text string object.
Definition
Tx.h:43
Driver::TPipe::Tx::sendRawCommand
virtual bool sendRawCommand(const char *completeCommandText, size_t numBytes) noexcept=0
This is an OPTIMIZATION - use with care!!
Driver::TPipe::Tx::sendCommand
bool sendCommand(const char *commandString) noexcept
Convenience method to send a command that is a contained in a null terminated string.
Definition
Tx.h:49
Driver
namespace
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8