make a gdb "restart" command that allows restarting without rebuilding

1.2-legacy
geeksville 2020-04-29 20:23:59 -07:00
rodzic 2982e197e0
commit 074ac33b8a
2 zmienionych plików z 11 dodań i 1 usunięć

6
gdbinit 100644
Wyświetl plik

@ -0,0 +1,6 @@
# the jlink debugger seems to want a pause after reset before we tell it to start running
define restart
monitor reset
shell sleep 1
cont
end

Wyświetl plik

@ -141,7 +141,11 @@ lib_deps =
https://github.com/meshtastic/BQ25703A.git
monitor_port = /dev/ttyACM1
debug_extra_cmds =
source gdbinit
; Set initial breakpoint (defaults to main)
debug_init_break =
;debug_init_break = tbreak loop
;debug_init_break = tbreak Reset_Handler