[Cryptech-Commits] [sw/stm32] 09/09: Add a small script to reset the STM32 CPU.

git at cryptech.is git at cryptech.is
Wed May 18 19:16:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

fredrik at thulin.net pushed a commit to branch master
in repository sw/stm32.

commit 67837a0d3cc661d250ecb2c57c22171f312e073a
Author: Fredrik Thulin <fredrik at thulin.net>
AuthorDate: Wed May 18 21:15:10 2016 +0200

    Add a small script to reset the STM32 CPU.
---
 bin/reset | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/bin/reset b/bin/reset
new file mode 100755
index 0000000..4461cf1
--- /dev/null
+++ b/bin/reset
@@ -0,0 +1,25 @@
+#!/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
+#OPENOCD_PROC_FILE=st_nucleo_f4.cfg
+
+$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "init" -c "reset run" -c "exit"



More information about the Commits mailing list