Add build shortcut script

This commit is contained in:
Aadi Desai 2023-02-26 19:41:10 +00:00
parent e1b0d5c28c
commit 3ea0c58728
No known key found for this signature in database
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
/.vscode/
/build/
__pycache__/

6
build.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
python3 make.py --build
cp build/gsd_orangecrab/gateware/gsd_orangecrab.bit gsd_orangecrab.dfu && echo "Copied .bit to .dfu"
dfu-suffix -v 1209 -p 5af0 -a gsd_orangecrab.dfu
rm -f /mnt/c/Users/suple/Desktop/dfu-util-0.9-win64/gsd.dfu && echo "Deleted old Win11 DFU"
mv gsd_orangecrab.dfu /mnt/c/Users/suple/Desktop/dfu-util-0.9-win64/gsd.dfu && echo "Moved new DFU to Win11 Desktop"