From eb8678cfebc788b6dbaa412d75551581a6201043 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Tue, 18 Feb 2020 20:59:52 +0800 Subject: [PATCH] Remove CONFIG_DEV_LOWCONSOLE from source code Follow the nuttx side change --- examples/poll/poll_listener.c | 16 ++++++++-------- nshlib/README.txt | 10 ---------- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/examples/poll/poll_listener.c b/examples/poll/poll_listener.c index f31f297d4..302a92f96 100644 --- a/examples/poll/poll_listener.c +++ b/examples/poll/poll_listener.c @@ -59,15 +59,15 @@ * Pre-processor Definitions ****************************************************************************/ -#if defined(CONFIG_DEV_CONSOLE) && !defined(CONFIG_DEV_LOWCONSOLE) -# define HAVE_CONSOLE -# define NPOLLFDS 2 -# define CONSNDX 0 -# define FIFONDX 1 +#ifdef CONFIG_DEV_CONSOLE +# define HAVE_CONSOLE +# define NPOLLFDS 2 +# define CONSNDX 0 +# define FIFONDX 1 #else -# undef HAVE_CONSOLE -# define NPOLLFDS 1 -# define FIFONDX 0 +# undef HAVE_CONSOLE +# define NPOLLFDS 1 +# define FIFONDX 0 #endif /**************************************************************************** diff --git a/nshlib/README.txt b/nshlib/README.txt index 716346db7..25d887520 100644 --- a/nshlib/README.txt +++ b/nshlib/README.txt @@ -1945,16 +1945,6 @@ NSH-Specific Configuration Settings Common Problems ^^^^^^^^^^^^^^^ - Problem: - Using NSH over serial, the "nsh>" prompt repeats over and over again - with no serial input. - Usual Cause: - NSH over serial needs to use the interrupt driven serial driver - (drivers/serial/serial.c) not the polled serial driver (drivers/serial/lowconsole.c). - Make sure that the polled console is disabled in the OS configuration - file, .config. That file should have CONFIG_DEV_LOWCONSOLE=n for - NSH over serial. - Problem: The function 'readline' is undefined. Usual Cause: