aboutsummaryrefslogtreecommitdiff
path: root/bin/flash-target
diff options
context:
space:
mode:
Diffstat (limited to 'bin/flash-target')
-rwxr-xr-xbin/flash-target5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/flash-target b/bin/flash-target
index aa77a99..0d60c85 100755
--- a/bin/flash-target
+++ b/bin/flash-target
@@ -1,7 +1,6 @@
#!/bin/sh
PROJ="${1?'project'}"
-
OPENOCD=openocd
# location of OpenOCD Board .cfg files (only used with 'make flash-target')
@@ -22,6 +21,8 @@ OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board
# the OPENOCD_BOARD_DIR directory.
#
OPENOCD_PROC_FILE=stm32f4discovery.cfg
-#OPENOCD_PROC_FILE=st_nucleo_f4.cfg
+if [ "x`lsusb -d 0483:374b`" != "x" ]; then
+ OPENOCD_PROC_FILE=st_nucleo_f4.cfg
+fi
$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "program $PROJ.elf verify reset exit"