Kconfig 881 B

12345678910111213141516171819202122232425
  1. menu "GDB Stub"
  2. # Hidden option which is selected from the "Panic handler behavior"
  3. # menu in the target component.
  4. config ESP_GDBSTUB_ENABLED
  5. bool
  6. config ESP_GDBSTUB_SUPPORT_TASKS
  7. bool "Enable listing FreeRTOS tasks through GDB Stub"
  8. depends on ESP_GDBSTUB_ENABLED
  9. default y
  10. help
  11. If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.
  12. Thread list can be queried from GDB using 'info threads' command.
  13. Note that if GDB task lists were corrupted, this feature may not work.
  14. If GDBStub fails, try disabling this feature.
  15. config ESP_GDBSTUB_MAX_TASKS
  16. int "Maximum number of tasks supported by GDB Stub"
  17. default 32
  18. depends on ESP_GDBSTUB_SUPPORT_TASKS
  19. help
  20. Set the number of tasks which GDB Stub will support.
  21. endmenu