nuttx/libs/libc/gdbstub/Kconfig
anjiahao b956495c5e libs/libc:Support gdb rsp protocol
you can debug nuttx through any transport layer (serial port, network etc.),
currently supports the following functions:
1. Read and write registers
2. Read and write memory
3. Switch thread and read stack information

Future support plans:
1. Support breakpoint, watch point (requires architecture support).

related information:
https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html

Signed-off-by: anjiahao <anjiahao@xiaomi.com>
2023-07-15 01:57:11 +08:00

21 lines
368 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config LIB_GDBSTUB
tristate "GDBSTUB"
depends on DEBUG_TCBINFO
---help---
Enable support for gdbstub.
if LIB_GDBSTUB
config LIB_GDBSTUB_DEBUG
bool "Gdbstub Debug Info"
default n
---help---
Add debug info to gdbstub
endif