feat: kconfig增加shell StackSize大小的设置 BREAKING CHANGE: kconfig增加shell StackSize大小的设置: 新增配置项 Close #I6KHRF Signed-off-by: nkj <tkyl01@yeah.net> Change-Id: I9d3a7e7933a01a0f1ad2199c82825cc471c623b0 Change-Id: I0d732e0270ae6dc354aec05f2a50f9439550accb
42 lines
795 B
Plaintext
42 lines
795 B
Plaintext
config SHELL
|
|
bool "Enable Shell"
|
|
default n
|
|
depends on DEBUG_VERSION
|
|
select USE_SHELL
|
|
help
|
|
Answer Y to enable LiteOS support shell cmd.
|
|
|
|
config USE_SHELL
|
|
bool
|
|
default n
|
|
|
|
menu "Functionality of Shell"
|
|
depends on SHELL
|
|
|
|
config SHELL_PRIO
|
|
int "Shell Task Priority"
|
|
default 3
|
|
range 1 31
|
|
depends on SHELL
|
|
|
|
config SHELL_STACK_SIZE
|
|
int "Shell Task Stack Size"
|
|
default 4096
|
|
depends on SHELL
|
|
|
|
config SHELL_LK
|
|
bool "Enable Shell lk"
|
|
default y
|
|
depends on DEBUG_VERSION && SHELL
|
|
help
|
|
Answer Y to enable LiteOS support shell lk.
|
|
|
|
config SHELL_DMESG
|
|
bool "Enable Shell dmesg"
|
|
default n
|
|
depends on DEBUG_VERSION && SHELL && SHELL_CMD_DEBUG
|
|
help
|
|
Answer Y to enable LiteOS support shell dmesg.
|
|
|
|
endmenu
|