7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-04 21:36:55 +00:00

Changed --load to --flash to flash qspi

This commit is contained in:
Aleksa Bjelogrlic 2024-10-18 22:31:01 -04:00
parent 4a33947ca3
commit a2d04bce3a

View File

@ -9,11 +9,11 @@ source ~/Xilinx/Vivado/2024.1/settings64.sh
export LITEX_ENV_VIVADO=~/Xilinx/Vivado/2024.1
if [ "$1" == "a50t" ]; then
./thunderscope.py --variant=a50t --build --load
./thunderscope.py --variant=a50t --build --flash
elif [ "$1" == "a100t" ]; then
./thunderscope.py --variant=a100t --build --load
./thunderscope.py --variant=a100t --build --flash
elif [ "$1" == "a200t" ]; then
./thunderscope.py --variant=a200t --build --load
./thunderscope.py --variant=a200t --build --flash
else
echo "Valid arguments are: a50t a100t a200t"
fi