Files
esp-idf/examples/system/sysview_tracing_heap_log/gdbinit
T

21 lines
383 B
Plaintext
Raw Normal View History

2020-04-17 11:51:00 +02:00
set pagination off
2018-12-12 20:44:32 +03:00
target remote :3333
mon reset halt
maintenance flush register-cache
2018-12-12 20:44:32 +03:00
tb heap_trace_start
commands
2020-03-16 19:06:47 +03:00
mon esp sysview start file:///tmp/heap_log.svdat
# For dual-core mode uncomment the line below and comment the line above
# mon esp sysview start file:///tmp/heap_log0.svdat file:///tmp/heap_log1.svdat
2018-12-12 20:44:32 +03:00
c
end
tb heap_trace_stop
commands
2020-03-16 19:06:47 +03:00
mon esp sysview stop
2018-12-12 20:44:32 +03:00
end
c