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_LK 23 bool "Enable Shell lk" 24 default y 25 depends on DEBUG_VERSION && SHELL 26 help 27 Answer Y to enable LiteOS support shell lk. 28 29config SHELL_DMESG 30 bool "Enable Shell dmesg" 31 default n 32 depends on DEBUG_VERSION && SHELL && SHELL_CMD_DEBUG 33 help 34 Answer Y to enable LiteOS support shell dmesg. 35 36endmenu 37