Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

Implements a simple unix-like shell for embedded systems with a pluggable command architecture.

Revision:
16:f2b9b7b2c71e
Parent:
15:242626d8d104
Child:
17:0739cb2f1930
--- a/SimpleShell.h	Wed Dec 19 18:25:12 2018 +0000
+++ b/SimpleShell.h	Wed Dec 19 18:42:25 2018 +0000
@@ -71,6 +71,9 @@
     /// Built-in shell command to print working directory
     void pwd(int argc, char **argv);
 
+    /// Built-in shell command to display contents of file
+    void cat(int argc, char **argv);
+
     /// Prints command prompt
     void printPrompt(void);