Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Revision:
4:8b8fa59d0015
Parent:
3:ebb4893f033d
Child:
6:4da092220ba8
--- a/SimpleShell.h	Sun Dec 02 17:14:28 2018 +0000
+++ b/SimpleShell.h	Sun Dec 02 17:20:15 2018 +0000
@@ -15,7 +15,7 @@
     Callback<void()> findCommand();  
     
 private:
-    static const int MAXBUF=128;
+    static const int MAXBUF=32;
     static const int MAXLOOKUP=32;
     void printPrompt(void);
     void readCommand();