Simple embedded shell with runtime pluggable commands.

Dependents:   DataBus2018

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

Revision:
17:0739cb2f1930
Parent:
16:f2b9b7b2c71e
Child:
18:2b5ed529ab37
--- a/SimpleShell.h	Wed Dec 19 18:42:25 2018 +0000
+++ b/SimpleShell.h	Wed Dec 19 19:02:17 2018 +0000
@@ -68,6 +68,9 @@
     /// Built-in shell command to display list of commands
     void help(int argc, char **argv);
 
+    /// Change current directory
+    void cd(int argc, char **argv);
+
     /// Built-in shell command to print working directory
     void pwd(int argc, char **argv);