#!/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 <