[finsh] add FINSH_ECHO_DISABLE_DEFAULT and remove FINSH_ECHO_MODE_DEFAULT, to control the finsh default echo mode

This commit is contained in:
moebius.ever 2018-03-16 16:26:22 +08:00
parent c1505a3d60
commit 61946325ee
2 changed files with 4 additions and 4 deletions

View File

@ -26,9 +26,9 @@ config FINSH_USING_DESCRIPTION
bool "Keeping description in symbol table"
default y
config FINSH_ECHO_MODE_DEFAULT
bool "Enble the command echo mode or not in default"
default y
config FINSH_ECHO_DISABLE_DEFAULT
bool "Disable the command echo mode or not in default"
default n
config FINSH_THREAD_PRIORITY
int "The priority level value of finsh thread"

View File

@ -414,7 +414,7 @@ void finsh_thread_entry(void *parameter)
char ch;
/* normal is echo mode */
#ifdef FINSH_ECHO_MODE_DEFAULT
#ifndef FINSH_ECHO_DISABLE_DEFAULT
shell->echo_mode = 1;
#else
shell->echo_mode = 0;