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

21 lines
383 B
Plaintext
Raw Normal View History

2020-04-17 11:51:00 +02:00
set pagination off
target remote :3333
mon reset halt
maintenance flush register-cache
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
c
end
tb heap_trace_stop
commands
2020-03-16 19:06:47 +03:00
mon esp sysview stop
end
c