Reputation: 59
I'm using Trace32 to debug micro controller SPC58NXXX software.
I added variables to Var.watch window and these variables values will be change once I run software.
When I run software with Lauterbach debugger even the variable values are changing the new values are not displaying in Var.watch.
I can see new variable values only when I stop debugger.
Do I need to configure in Trace32 settings for displaying variable value changes in var.watch window when debugger is in running mode?
Upvotes: 1
Views: 2454
Reputation: 566
Tell the debugger that you want it to update variable values while the processor runs. There are three methods:
%E in Var.* windows: Var.View %E myVar
Access class E: for addresses: Data.dump E:0x40070000
Global enable (not recommended): SYStem.Option.DUALPORT ON
Upvotes: 2