2024-06-22 08:35:29 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2024-09-08 12:30:38 +02:00
|
|
|
config SYSTEM_DEBUGPOINT
|
2024-09-02 14:30:01 +02:00
|
|
|
tristate "Debugpoint utility"
|
2024-06-22 08:35:29 +02:00
|
|
|
default n
|
|
|
|
depends on ARCH_HAVE_DEBUG
|
|
|
|
depends on LIB_GDBSTUB
|
|
|
|
---help---
|
2024-09-08 12:30:38 +02:00
|
|
|
Enable the DEBUGPOINT test program. It is a simple
|
2024-09-02 14:30:01 +02:00
|
|
|
utility for testing the debug point support and
|
|
|
|
add debug points to the system by command line.
|
2024-06-22 08:35:29 +02:00
|
|
|
|
2024-09-08 12:30:38 +02:00
|
|
|
if SYSTEM_DEBUGPOINT
|
2024-06-22 08:35:29 +02:00
|
|
|
|
2024-09-08 12:30:38 +02:00
|
|
|
config SYSTEM_DEBUGPOINT_PROGNAME
|
2024-06-22 08:35:29 +02:00
|
|
|
string "Program name"
|
2024-09-08 12:30:38 +02:00
|
|
|
default "debugpoint"
|
2024-06-22 08:35:29 +02:00
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
2024-09-08 12:30:38 +02:00
|
|
|
config SYSTEM_DEBUGPOINT_PRIORITY
|
2024-06-22 08:35:29 +02:00
|
|
|
int "Task priority"
|
|
|
|
default 100
|
|
|
|
|
2024-09-08 12:30:38 +02:00
|
|
|
config SYSTEM_DEBUGPOINT_STACKSIZE
|
2024-06-22 08:35:29 +02:00
|
|
|
int "Stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
|
|
|
endif
|