![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines methods for interfacing with the Platform native OS to execute a native OS system/shell command. More...
This class defines methods for interfacing with the Platform native OS to execute a native OS system/shell command.
Support for this interface is target/platform specific, i.e. support for this interface is OPTIONAL. If the target does not support this interface, then the 'execute' method does NOTHING (and returns -1); and the method isAvailable() return false.
#include <Shell.h>
Static Public Member Functions | |
static int | execute (const char *cmdstring, bool noEchoStdOut=true, bool noEchoStdErr=true) |
Executes the System Shell command as specified by 'cmdstring'. | |
static bool | isAvailable () |
Returns true if the system command shell is available. | |
|
static |
Executes the System Shell command as specified by 'cmdstring'.
If noEchoStdOut is set to true then the standard output of the shell command is set to the system's NUL device. If noEchoStdErr is set to true then the standard error output of the shell command is set to the system's NUL device. The method returns -1 if unable to execute the command, else returns the result code of the command executed.
|
static |
Returns true if the system command shell is available.