19 lines
216 B
Bash
Executable file
19 lines
216 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -euo pipefail
|
|
|
|
HEXFILE="$1"
|
|
|
|
if [ ! -f "$HEXFILE" ]; then
|
|
echo "$HEXFILE cannot be accessed."
|
|
exit 1
|
|
fi
|
|
|
|
JLinkExe -device STM32F030C8 -speed 1000 -if SWD <<EOF
|
|
connect
|
|
loadfile $HEXFILE
|
|
r
|
|
g
|
|
exit
|
|
EOF
|