From 6bdafa6d56bf38929c509cb7c4c752fc016dd1f3 Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Tue, 16 Apr 2019 04:42:39 +0300 Subject: [PATCH] Added errors supression script for Vivado to allow 'proto' projects w/o pin assignments --- scripts/allow_undefined_ports.tcl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 scripts/allow_undefined_ports.tcl diff --git a/scripts/allow_undefined_ports.tcl b/scripts/allow_undefined_ports.tcl new file mode 100644 index 0000000..382b409 --- /dev/null +++ b/scripts/allow_undefined_ports.tcl @@ -0,0 +1,14 @@ +#------------------------------------------------------------------------------ +# allow_undefined_ports.tcl +# Konstantin Pavlov, pavlovconst@gmail.com +#------------------------------------------------------------------------------ + +# INFO ------------------------------------------------------------------------ +# Use this script for Xilinx Vivado environment to allow generation of test +# projects with undefines pins (that will eventually have DEFAULT positional +# and electrical standard constraints) +# +# Place this script as a pre-tcl-script for "Generate bitstream" step + +set_property SEVERITY {Warning} [get_drc_checks NSTD-1] +set_property SEVERITY {Warning} [get_drc_checks UCIO-1]