holiday_lights/harrogate/flash.sh

25 lines
435 B
Bash
Raw Normal View History

#!/bin/sh
set -e
2021-07-05 00:30:27 +00:00
cd "$(dirname "$0")"
cargo build --release --features $1
APPLET=harrogate
TARGET_BIN="target/thumbv6m-none-eabi/release/$APPLET"
test -e "$TARGET_BIN" || {
echo "'$APPLET' does not exist"
exit 1
}
2021-07-05 00:30:27 +00:00
arm-none-eabi-objcopy -O binary "$TARGET_BIN" image.bin
uf2conv-rs image.bin -o image.uf2
sudo mount LABEL=ITSYBOOT mnt/
echo "Flashing..."
2021-07-05 00:30:27 +00:00
sudo cp image.uf2 mnt/image.uf2
sync
echo "Done."
sudo umount mnt/