summaryrefslogtreecommitdiff
path: root/apps/system
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-01 13:15:31 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-01 13:15:31 -0600
commit7c6756d8e708bf49546c674b65c075dab6d77880 (patch)
tree1616f9d137dddf3c2845e22efa05b5753b7ef849 /apps/system
parentab7192223b73f25329bb9cb3068c1bf65016832a (diff)
downloadnuttx-7c6756d8e708bf49546c674b65c075dab6d77880.tar.gz
nuttx-7c6756d8e708bf49546c674b65c075dab6d77880.tar.bz2
nuttx-7c6756d8e708bf49546c674b65c075dab6d77880.zip
Removed forced enable of CONFIG_READLINE_ECHO in apps/system/readline/readline.h
Diffstat (limited to 'apps/system')
-rw-r--r--apps/system/readline/readline.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/system/readline/readline.h b/apps/system/readline/readline.h
index 386d6d060..f38b7af78 100644
--- a/apps/system/readline/readline.h
+++ b/apps/system/readline/readline.h
@@ -1,7 +1,7 @@
/****************************************************************************
* apps/system/readline/readline.h
*
- * Copyright (C) 2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,12 +45,6 @@
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
-/* In some systems, the underlying serial logic may automatically echo
- * characters back to the console. We will assume that that is not the case
- & here
- */
-
-#define CONFIG_READLINE_ECHO 1
/* Some environments may return CR as end-of-line, others LF, and others
* both. If not specified, the logic here assumes either (but not both) as