nuttx-apps/system/gdbstub/Kconfig
anjiahao 73b888869b gdbstub:Support a general gdbstub, support serial port and network link
Partially implement the gdb rsp protocol,
you can debug the nuttx kernel through the serial port or the network

Signed-off-by: anjiahao <anjiahao@xiaomi.com>
2023-07-13 19:31:57 +08:00

26 lines
516 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_GDBSTUB
tristate "GDBSTUB"
---help---
Enable support for gdbstub.
if SYSTEM_GDBSTUB
config SYSTEM_GDBSTUB_STACKSIZE
int "gdbstub stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the gdbstub task.
config SYSTEM_GDBSTUB_PRIORITY
int "gdbstub priority"
default 100
---help---
The priority of the gdbstub task.
endif