Hello,I have cloned the repository as shown the photo below and tried to run the
source ./base.tcl
how ever instead of seeing a diagram opening up in vivado I get an error as shown below.
Its an official project and I used vivado 2022.1
How can I correct the situation, How do I add xczu48dr-ffvg1517-2-e?
WARNING: [Device 21-436] No parts matched ‘xczu48dr-ffvg1517-2-e’
ERROR: [Coretcl 2-106] Specified part could not be found.
namespace eval _tcl {
proc get_script_folder {} {
set script_path [file normalize [info script]]
set script_folder [file dirname $script_path]
return $script_folder
}
}
variable script_folder
set script_folder [_tcl::get_script_folder]
set scripts_vivado_version 2022.1
set current_vivado_version [version -short]
if { [string first $scripts_vivado_version $current_vivado_version] == -1 } {
puts “”
catch {common::send_gid_msg -ssname BD::TCL -id 2041 -severity “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.”}