Hi.
Is it possible to debug applications in qt creator in real-time (non-blocking) mode?
edit:
qt 5.2 or 5.1; windows xp/linux; gdb
Printable View
Hi.
Is it possible to debug applications in qt creator in real-time (non-blocking) mode?
edit:
qt 5.2 or 5.1; windows xp/linux; gdb
What exactly do you consider a "non-blocking mode"? If you don't set any breakpoints then debugger will usually not interrupt your program.
I want to refresh my variables in "watch window" without permanent stop of my program.
This mode is called real time analysis on dsp processors, and it stops the program every xxx ms gets data (a table or other int ;) from uC) print the data in watch window, and runs the program again.
I know that I can print those variables in console, or even make a special place in my window, but I am wondering that's possible or not