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

This commit is contained in:
geeksville
2020-04-29 20:23:59 -07:00
parent 2982e197e0
commit 074ac33b8a
2 changed files with 11 additions and 1 deletions
+6
View File
@@ -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