diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-20 14:32:35 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-20 14:32:35 +0000 |
commit | 22a386b4540b2e5fd4249887e26fdd78a73b692c (patch) | |
tree | 23f2d67abd32f3a9fb2e7be05d66e1e88cc809c8 /os/various/shell/shell_cmd.h | |
parent | 27e1398be3821f814aee4eaf7627b2d8fb5c4934 (diff) | |
download | ChibiOS-22a386b4540b2e5fd4249887e26fdd78a73b692c.tar.gz ChibiOS-22a386b4540b2e5fd4249887e26fdd78a73b692c.tar.bz2 ChibiOS-22a386b4540b2e5fd4249887e26fdd78a73b692c.zip |
Shell enhancements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8914 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell/shell_cmd.h')
-rw-r--r-- | os/various/shell/shell_cmd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/various/shell/shell_cmd.h b/os/various/shell/shell_cmd.h index 36e6c0728..9d7c129d0 100644 --- a/os/various/shell/shell_cmd.h +++ b/os/various/shell/shell_cmd.h @@ -37,6 +37,10 @@ #define SHELL_CMD_INFO_ENABLED TRUE
#endif
+#if !defined(SHELL_CMD_ECHO_ENABLED) || defined(__DOXYGEN__)
+#define SHELL_CMD_ECHO_ENABLED TRUE
+#endif
+
#if !defined(SHELL_CMD_SYSTIME_ENABLED) || defined(__DOXYGEN__)
#define SHELL_CMD_SYSTIME_ENABLED TRUE
#endif
|