mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
352 B
Bash
Executable File
21 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -L "$0" ]; then
|
|
FILE=$(readlink -e "$0")
|
|
else
|
|
FILE="$0"
|
|
fi
|
|
|
|
BIN_FOLDER=$(dirname "${FILE}")
|
|
|
|
openocd -f "${BIN_FOLDER}/${BOARD}_jtag.cfg" \
|
|
-f "target/stm32f1x.cfg" \
|
|
-c "init" \
|
|
-c "targets" \
|
|
-c "reset halt" \
|
|
-c "reset init" \
|
|
-c "flash write_image erase $1" \
|
|
-c "verify_image $1" \
|
|
-c "reset run"\
|
|
-c "shutdown"
|