mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	 33271be13b
			
		
	
	33271be13b
	
	
	
		
			
			This commit updates the Panic handler behavior Kconfig setting to make the GDBStub on Panic (CONFIG_ESP_SYSTEM_PANIC_GDBSTUB) option to be only available when esp_gdbstub is part of the component list of the build. Closes https://github.com/espressif/esp-idf/issues/13218
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "GDB Stub"
 | |
| 
 | |
|     # Hidden option which adds GDBStub on panic option to the "Panic handler behavior"
 | |
|     # menu in the target component.
 | |
|     config ESP_GDBSTUB_ENABLED
 | |
|         bool
 | |
|         default y
 | |
| 
 | |
|     config ESP_SYSTEM_GDBSTUB_RUNTIME
 | |
|         bool "GDBStub at runtime"
 | |
|         select ESP_GDBSTUB_ENABLED
 | |
|         help
 | |
|             Enable builtin GDBStub.
 | |
|             This allows to debug the target device using serial port:
 | |
|             - Run 'idf.py monitor'.
 | |
|             - Wait for the device to initialize.
 | |
|             - Press Ctrl+C to interrupt the execution and enter GDB attached to your device for debugging.
 | |
|             NOTE: all UART input will be handled by GDBStub.
 | |
| 
 | |
|     config ESP_GDBSTUB_SUPPORT_TASKS
 | |
|         bool "Enable listing FreeRTOS tasks through GDB Stub"
 | |
|         depends on ESP_GDBSTUB_ENABLED
 | |
|         default y
 | |
|         help
 | |
|             If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.
 | |
|             Thread list can be queried from GDB using 'info threads' command.
 | |
|             Note that if GDB task lists were corrupted, this feature may not work.
 | |
|             If GDBStub fails, try disabling this feature.
 | |
| 
 | |
|     config ESP_GDBSTUB_MAX_TASKS
 | |
|         int "Maximum number of tasks supported by GDB Stub"
 | |
|         default 32
 | |
|         depends on ESP_GDBSTUB_SUPPORT_TASKS
 | |
|         help
 | |
|             Set the number of tasks which GDB Stub will support.
 | |
| 
 | |
| endmenu
 |