Skip to content
Snippets Groups Projects
Commit 3d6ab446 authored by James Talbert's avatar James Talbert
Browse files

Merge branch '41-Transition-current-hardware-platform-to-Vivado' of...

Merge branch '41-Transition-current-hardware-platform-to-Vivado' of https://git.ece.iastate.edu/danc/MicroCART into 41-Transition-current-hardware-platform-to-Vivado
parents 738f30be a5adc81c
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,20 @@ and adding the following at the end of the file:
make_wrapper -files [get_files ${origin_dir}/${_xil_proj_name_}/${_xil_proj_name_}.srcs/sources_1/bd/design_1/design_1.bd] -top
add_files -norecurse ${origin_dir}/${_xil_proj_name_}/${_xil_proj_name_}.srcs/sources_1/bd/design_1/hdl/design_1_wrapper.vhd
```
Additionally, you need to make the constraints file a remote source, not a local one.
Replace
````
set file "[file normalize "$origin_dir/PWM_Recorder_Tests/src/constrs/Zybo-Z7-Master.xdc"]"
set file_imported [import_files -fileset constrs_1 [list $file]]
set file "constrs/Zybo-Z7-Master.xdc"
set file_obj [get_files -of_objects [get_filesets constrs_1] [list "*$file"]]
set_property -name "file_type" -value "XDC" -objects $file_obj
````
with
````
add_files -fileset constrs_1 -norecurse ${origin_dir}/${_xil_proj_name_}/src/constrs/Zybo-Z7-Master.xdc
````
# Version Control
At the top of the tcl file for the project, there is a list of files that need to be in version control.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment