nuttx-apps/testing/debug/Kconfig
Huang Qi 2e5a269e7f testing: Add simple debug test program
It is a simple test case of the NuttX debugging facilities (breakpoint and watchpoint).

Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
2024-06-26 00:19:26 +08:00

33 lines
696 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_DEBUG
tristate "Debug test"
default n
depends on ARCH_HAVE_DEBUG
depends on LIB_GDBSTUB
---help---
Enable the DEBUG test program. It is a simple
test case of the NuttX debugging facilities.
if TESTING_DEBUG
config TESTING_DEBUG_PROGNAME
string "Program name"
default "debug"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_DEBUG_PRIORITY
int "Task priority"
default 100
config TESTING_DEBUG_STACKSIZE
int "Stack size"
default DEFAULT_TASK_STACKSIZE
endif