1#ifndef Driver_Dio_TShell_InOutCmd_h
2#define Driver_Dio_TShell_InOutCmd_h
15#include "colony_config.h"
20#ifndef OPTION_DRIVER_DIO_IN_OUT_CMD_MAX_IN_PINS
21#define OPTION_DRIVER_DIO_IN_OUT_CMD_MAX_IN_PINS 32
25#ifndef OPTION_DRIVER_DIO_IN_OUT_CMD_MAX_OUT_PINS
26#define OPTION_DRIVER_DIO_IN_OUT_CMD_MAX_OUT_PINS 32
42 static constexpr const char*
verb =
"inout";
45 static constexpr const char*
usage =
"inout\n"
46 "inout start <numIn> [<in0Pin> <in0Blob> .. <inNPin> <inNBlob>] <numOut> [out0Pin out0Blob .. [outMPin outMBlob]\n"
48 "inout write <pin-idx> <bitValue>";
55 static constexpr const char*
detailedHelp =
" Exercises the InOut Driver. The command with no arguments displays\n"
56 " the state of the driver as well as the current input values. The user is\n"
57 " required to manually start (and stop) the driver for proper operation.";
#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 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
This class implements a TShell command that exercises the RH/Temp driver.
Definition InOutCmd.h:39
static constexpr const char * usage
The command usage string.
Definition InOutCmd.h:45
InOutCmd(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
static constexpr const char * verb
The command verb/identifier.
Definition InOutCmd.h:42
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition InOutCmd.h:63
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 InOutCmd.h:55
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
const char * getUsage() const noexcept
See Cpl::TShell::Command.
Definition InOutCmd.h:60