diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-05-26 13:27:04 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-05-26 13:27:04 +0200 |
commit | ea0c0ce7e1cee6d65e70ccd0723ea59e08662e19 (patch) | |
tree | c618dae03aa13716a66923c3b04b84514fb3ff88 /bin/debug | |
parent | 684b0c04b0eb81a8b587fe89d093a4499d960c28 (diff) |
Figure out if the user (me) has a NUCLEO board.
Diffstat (limited to 'bin/debug')
-rwxr-xr-x | bin/debug | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5,7 +5,9 @@ PROJ="${1?'project'}" OPENOCD=openocd OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board 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 & GDB=arm-none-eabi-gdb |