mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
idf.py: debug targets for easier execution of openocd, gdb, gdbui
Support for execution of asynchronous target, such as openocd, which by default runs in the background, but if it's the only target idf.py outputs the openocd in the console waiting for termination by user. Supports also blocking commands gdb and gdbtui to start a debugging session in an active console. Supports running gdbgui running a UI debugging session in a browser window, using the active console for other commands, such as openocd or monitor. Supports combining the debug targets in one action list, such as idf.py openocd gdbgui monitor
This commit is contained in:
+4
-1
@@ -11,7 +11,10 @@ future>=0.15.2
|
||||
cryptography>=2.1.4
|
||||
pyparsing>=2.0.3,<2.4.0
|
||||
pyelftools>=0.22
|
||||
|
||||
gdbgui>=0.13.2.0
|
||||
pygdbmi<=0.9.0.2
|
||||
# The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not copatible with latest gdbgui (>=0.13.2.0)
|
||||
|
||||
# windows-curses are required in Windows command line but cannot be installed in MSYS2. A requirement like
|
||||
# "windows-curses; sys_platform == 'win32'" would want to install the package on both of them. There is no environment
|
||||
# marker for detecting MSYS2. So instead, a dummy custom package is used with "windows-curses" dependency for Windows
|
||||
|
||||
Reference in New Issue
Block a user