1config SHELL 2 bool "Enable Shell" 3 default n 4 depends on DEBUG_VERSION 5 select USE_SHELL 6 help 7 Answer Y to enable LiteOS support shell cmd. 8 9config USE_SHELL 10 bool 11 default n 12 13menu "Functionality of Shell" 14 depends on SHELL 15 16config SHELL_PRIO 17 int "Shell Task Priority" 18 default 3 19 range 1 31 20 depends on SHELL 21 22config SHELL_STACK_SIZE 23 int "Shell Task Stack Size" 24 default 4096 25 depends on SHELL 26 27endmenu 28