Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Revision:
27:51120f1cec44
Parent:
26:0067bd31653f
Child:
28:753db82debb1
--- a/SimpleShell.h	Mon Dec 24 20:14:12 2018 +0000
+++ b/SimpleShell.h	Mon Dec 24 20:15:29 2018 +0000
@@ -32,7 +32,7 @@
 public:
 
     /// Callback type used for shell commands.
-    typedef Callback<void(int, char**)> callback_t;
+    typedef Callback<void(int,char**)> callback_t;
 
     /// Create a new shell instance.
     SimpleShell();