From 26f12903dab2fafeaaefb02349763618ce96d070 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Mon, 26 Oct 2015 15:18:58 -0400 Subject: Based on user/ft/stm32-dev-bridge, without the project-specific build directories (and duplicated code). --- bin/debug | 7 +++++++ bin/flash-target | 27 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 bin/debug create mode 100755 bin/flash-target (limited to 'bin') 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" -- cgit v1.2.3