aboutsummaryrefslogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index a1c344c..8253d05 100755
--- a/run.sh
+++ b/run.sh
@@ -3,7 +3,7 @@
# Starts openocd and connects gdb to the target, for programming/debugging
#
-openocd -f /usr/share/openocd/scripts/board/st_nucleo_l476rg.cfg &
+openocd -f /usr/local/share/openocd/scripts/board/st_nucleo_l4.cfg &
sleep 1 # Need to wait some time for openocd to connect
gdb-multiarch -ex "target remote localhost:3333" main.elf
pkill openocd # Ensure openocd exits when we're done