mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
257 B
Bash
Executable File
18 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -L "$0" ]; then
|
|
FILE=$(readlink "$0")
|
|
else
|
|
FILE="$0"
|
|
fi
|
|
|
|
BIN_FOLDER=$(dirname "${FILE}")
|
|
|
|
echo "##"
|
|
echo "## Resetting $BOARD"
|
|
echo "##"
|
|
openocd -f "${BIN_FOLDER}/openocd.cfg" \
|
|
-c "init" \
|
|
-c "reset run" \
|
|
-c "shutdown"
|