Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Files at this revision

API Documentation at this revision

Comitter:
shimniok
Date:
Mon Dec 24 20:15:29 2018 +0000
Parent:
26:0067bd31653f
Child:
28:753db82debb1
Commit message:
Fix typedef docs

Changed in this revision

SimpleShell.h Show annotated file Show diff for this revision Revisions of this file
--- 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();