diff options
author | Wade Fife <wade.fife@ettus.com> | 2021-08-25 09:24:05 -0500 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2021-08-30 08:20:10 -0500 |
commit | c176046dff4941bcec27b0b72e5a68264c4808e5 (patch) | |
tree | f8736cfb5e496f855fdb83109cb39f1fba6c9b44 /fpga/usrp3/tools | |
parent | 2680025c1b8ac51812931d78b2e0a4777f8e1774 (diff) | |
download | uhd-c176046dff4941bcec27b0b72e5a68264c4808e5.tar.gz uhd-c176046dff4941bcec27b0b72e5a68264c4808e5.tar.bz2 uhd-c176046dff4941bcec27b0b72e5a68264c4808e5.zip |
fpga: Set default part for sim in setupenv.sh
This sets the ARCH and PART_ID environment variables so that the
selected part family is used for simulations by default. This can be
overridden by changing them in the Makefile for the testbench if a
testbench requires a specific part family. Prior to this change, the
default was always ARCH=kintex7, PART_ID=xc7k410t/ffg900/-2, which
required support for that part to be installed.
Diffstat (limited to 'fpga/usrp3/tools')
-rw-r--r-- | fpga/usrp3/tools/make/viv_sim_preamble.mak | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fpga/usrp3/tools/make/viv_sim_preamble.mak b/fpga/usrp3/tools/make/viv_sim_preamble.mak index 514b06a0a..f7dfd4503 100644 --- a/fpga/usrp3/tools/make/viv_sim_preamble.mak +++ b/fpga/usrp3/tools/make/viv_sim_preamble.mak @@ -12,13 +12,12 @@ SIM_RUNTIME_US = 1000000000 # Define part using PART_ID (<device>/<package>/<speedgrade>) # and architecture (zynq, kintex7, or artix7) -# -# Most simulations are part agnostic, but the user can override +# +# Most simulations are part agnostic, but the user can override # these if needed in the makefile in the simulation directory # -# TODO : Update to set from setupenv.sh ARCH ?= kintex7 -PART_ID ?= xc7k410t/ffg900/-2 +PART_ID ?= xc7k410t/ffg900/-2 # Include makefiles and sources for the DUT and its dependencies include $(BASE_DIR)/../lib/sim/Makefile.srcs @@ -48,7 +47,7 @@ vars:: env @echo "ARCH=$(ARCH)" @echo "PART_ID=$(PART_ID)" - + all: $(error "all" or "<empty>" is not a valid target. Run make help for a list of supported targets.) |