aboutsummaryrefslogtreecommitdiff
path: root/bin
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
Based on user/ft/stm32-dev-bridge, without the project-specific build
directories (and duplicated code).
Diffstat (limited to 'bin')
-rwxr-xr-xbin/debug7
-rwxr-xr-xbin/flash-target27
2 files changed, 34 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
diff --git a/bin/flash-target b/bin/flash-target
new file mode 100755
index 0000000..cfb951f
--- /dev/null
+++ b/bin/flash-target
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+PROJ="${1?'project'}"
+
+OPENOCD=openocd
+
+# location of OpenOCD Board .cfg files (only used with 'make flash-target')
+#
+# This path is from Ubuntu 14.04.
+#
+OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board
+
+# Configuration (cfg) file containing programming directives for OpenOCD
+#
+# If you are using an STLINK v2.0 from an STM32 F4 DISCOVERY board,
+# set this variable to "stm32f4discovery.cfg".
+#
+# If you are using an STLINK v2.1 from an STM32 F4 NUCLEO board,
+# set this variable to "st_nucleo_f401re.cfg".
+#
+# If you are using something else, look for a matching configuration file in
+# the OPENOCD_BOARD_DIR directory.
+#
+#OPENOCD_PROC_FILE=stm32f4discovery.cfg
+OPENOCD_PROC_FILE=st_nucleo_f401re.cfg
+
+$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "program $PROJ.elf verify reset"