1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/boards/nucleo-f334/dist/flash.sh

14 lines
230 B
Bash
Raw Normal View History

2015-01-21 08:07:53 +01:00
#!/bin/bash
echo "##"
echo "## Flashing $1"
echo "##"
openocd -f board/st_nucleo_f334r8.cfg \
-c "init" \
-c "targets" \
-c "reset halt" \
-c "program $1 0x8000000 verify" \
-c "reset run"\
-c "shutdown"