Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Revision:
8:41b7274a9753
Parent:
7:b58450c94d32
Child:
9:05eb118e66d9
--- a/SimpleShell.h	Wed Dec 12 17:58:27 2018 +0000
+++ b/SimpleShell.h	Wed Dec 12 18:30:49 2018 +0000
@@ -59,6 +59,9 @@
      * @return Callback to a function returning void
      */
     Callback<void()> findCommand();  
+    
+    /// Built-in shell command to display list of commands
+    void help();
 
     /// Prints command prompt
     void printPrompt(void);