Skip to content

Commit

Permalink
Projects: BSD: Fixed version checking
Browse files Browse the repository at this point in the history
Fixed version checking in system.tcl. It was commented out, likely because this project just happens to also work in 2015.4. The fact that this project works in 2015.4 is an anomaly to the norm, which is that block diagram projects don't normally work between Vivado versions. The reason this project happens to work in both versions is because Xilinx did not update any of the IP cores that are used in it. The project will still not work with previous versions, nor with future versions (2016.X, etc.) so the version check has been added back in to throw an error when using any version but 2015.3 to generate the project
  • Loading branch information
sbobrowicz committed Jan 27, 2016
1 parent 48a3a36 commit a013007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Projects/BSD/src/bd/system.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if { [string first $scripts_vivado_version $current_vivado_version] == -1 } {
puts ""
puts "ERROR: This script was generated using Vivado <$scripts_vivado_version> and is being run in <$current_vivado_version> of Vivado. Please run the script in Vivado <$scripts_vivado_version> then open the design in Vivado <$current_vivado_version>. Upgrade the design by running \"Tools => Report => Report IP Status...\", then run write_bd_tcl to create an updated script."

# return 1
return 1
}

################################################################
Expand Down

0 comments on commit a013007

Please sign in to comment.