Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Revision:
1:998a7ed04f10
Parent:
0:49820d5a38c9
Child:
2:4f0affdb7db9
--- a/SimpleShell.cpp	Sat Dec 01 23:18:03 2018 +0000
+++ b/SimpleShell.cpp	Sun Dec 02 16:50:40 2018 +0000
@@ -21,6 +21,10 @@
 }
 
 
+void SimpleShell::attach(Callback<void()> cb, char *command) {
+}
+
+
 void SimpleShell::printPrompt()
 {
     fputc('(', stdout);