GM6000 Digital Heater Controller Branch: main
SDX-1330
Dbg.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Dac_Cmd_Arduino_Dbg_h
2#define Cpl_TShell_Dac_Cmd_Arduino_Dbg_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, 2015 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"
17
18///
19namespace Cpl {
20///
21namespace TShell {
22///
23namespace Cmd {
24///
25namespace Arduino {
26
27
28
29/** This class implements a DAC Shell command
30 */
32{
33public:
34 /// The command verb/identifier
35 static constexpr const char* verb = "dbg";
36
37 /// The command usage string
38 static constexpr const char* usage = "dbg mem";
39
40 /** The command detailed help string (recommended that lines do not exceed 80 chars)
41 1 2 3 4 5 6 7 8
42 12345678901234567890123456789012345678901234567890123456789012345678901234567890
43 */
44 static constexpr const char* detailedHelp = " Shell command to invoke 'native Arduino' utilities/methods";
45
46public:
47 /// See Cpl::TShell::Command
48 const char* getUsage() const noexcept { return usage; }
49
50 /// See Cpl::TShell::Command
51 const char* getHelp() const noexcept { return detailedHelp; }
52
53public:
54 /// Constructor
57
58
59public:
60 /// See Cpl::TShell::Command
61 Cpl::TShell::Command::Result_T execute( Context_& context, char* rawCmdString, Cpl::Io::Output& outfd ) noexcept;
62
63};
64
65}; // end namespaces
66};
67};
68};
69#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This class implements a DAC Shell command.
Definition Dbg.h:32
static constexpr const char * usage
The command usage string.
Definition Dbg.h:38
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Dbg.h:51
static constexpr const char * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition Dbg.h:44
const char * getUsage() const noexcept
See Cpl::TShell::Command.
Definition Dbg.h:48
Dbg(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
Cpl::TShell::Command::Result_T execute(Context_ &context, char *rawCmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
static constexpr const char * verb
The command verb/identifier.
Definition Dbg.h:35
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Result_T
Possible result codes when executing a command.
Definition Command.h:35
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
Permission_T
Permissions levels.
Definition Security.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20