aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell/shell.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-04-10 12:21:53 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-04-10 12:21:53 +0000
commit4fb90c9c32b458b1607e46438b8417d9f59ecaf4 (patch)
tree3838ab846eae5f3e63b0633e154abceef95b056a /os/various/shell/shell.h
parent8dd80c1aa541de9fb3814f8481bf97f3d974f1ab (diff)
downloadChibiOS-4fb90c9c32b458b1607e46438b8417d9f59ecaf4.tar.gz
ChibiOS-4fb90c9c32b458b1607e46438b8417d9f59ecaf4.tar.bz2
ChibiOS-4fb90c9c32b458b1607e46438b8417d9f59ecaf4.zip
More shell enhancements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9276 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell/shell.h')
-rw-r--r--os/various/shell/shell.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/os/various/shell/shell.h b/os/various/shell/shell.h
index cf52bce9a..4620ded8b 100644
--- a/os/various/shell/shell.h
+++ b/os/various/shell/shell.h
@@ -25,6 +25,10 @@
#ifndef SHELL_H
#define SHELL_H
+#if defined(SHELL_CONFIG_FILE)
+#include "shellconf.h"
+#endif
+
/*===========================================================================*/
/* Module constants. */
/*===========================================================================*/
@@ -74,14 +78,14 @@
* @brief Enable shell command history
*/
#if !defined(SHELL_USE_HISTORY) || defined(__DOXYGEN__)
-#define SHELL_USE_HISTORY TRUE
+#define SHELL_USE_HISTORY FALSE
#endif
/**
* @brief Enable shell command completion
*/
#if !defined(SHELL_USE_COMPLETION) || defined(__DOXYGEN__)
-#define SHELL_USE_COMPLETION TRUE
+#define SHELL_USE_COMPLETION FALSE
#endif
/**
@@ -95,7 +99,7 @@
* @brief Enable shell escape sequence processing
*/
#if !defined(SHELL_USE_ESC_SEQ) || defined(__DOXYGEN__)
-#define SHELL_USE_ESC_SEQ TRUE
+#define SHELL_USE_ESC_SEQ FALSE
#endif
/*===========================================================================*/