aboutsummaryrefslogtreecommitdiff
path: root/bin/debug
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2015-10-26 15:18:58 -0400
committerPaul Selkirk <paul@psgd.org>2015-10-26 15:18:58 -0400
commit26f12903dab2fafeaaefb02349763618ce96d070 (patch)
treeb37cceea7014770ea2ae039928e57b6f02c0aaa2 /bin/debug
Based on user/ft/stm32-dev-bridge, without the project-specific build
directories (and duplicated code).
Diffstat (limited to 'bin/debug')
-rwxr-xr-xbin/debug7
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/debug b/bin/debug
new file mode 100755
index 0000000..f6ede81
--- /dev/null
+++ b/bin/debug
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+PROJ="${1?'project'}"
+
+GDB=arm-none-eabi-gdb
+
+$GDB -ex "target remote localhost:3333" -ex "set remote hardware-breakpoint-limit 6" -ex "set remote hardware-watchpoint-limit 4" $PROJ.elf