From a2d04bce3a6c6ded48bf1e04909e46710d0e97f5 Mon Sep 17 00:00:00 2001 From: Aleksa Bjelogrlic <aleksa@eevengers.com> Date: Fri, 18 Oct 2024 22:31:01 -0400 Subject: [PATCH] Changed --load to --flash to flash qspi --- Gateware/build_and_flash_ts_litex.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gateware/build_and_flash_ts_litex.sh b/Gateware/build_and_flash_ts_litex.sh index 3d42c58c..211c0165 100755 --- a/Gateware/build_and_flash_ts_litex.sh +++ b/Gateware/build_and_flash_ts_litex.sh @@ -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