From ad0703886a80ba9e3eec0eb023243f691d53de75 Mon Sep 17 00:00:00 2001 From: Fredrik Thulin Date: Thu, 11 Aug 2016 10:14:11 +0200 Subject: import from local directory --- bin/reset | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 bin/reset (limited to 'bin/reset') diff --git a/bin/reset b/bin/reset new file mode 100755 index 0000000..8190805 --- /dev/null +++ b/bin/reset @@ -0,0 +1,31 @@ +#!/bin/sh + +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 +if [ "x`lsusb -d 0483:374b`" != "x" ]; then + for fn in st_nucleo_f4.cfg st_nucleo_f401re.cfg; do + if [ -f "$OPENOCD_BOARD_DIR/$fn" ]; then + OPENOCD_PROC_FILE="$fn" + fi + done +fi + +$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "init" -c "reset run" -c "exit" -- cgit v1.2.3