We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The constraints file for the Enclustra AX3 has two buggy lines
File: boards/enclustra_ax3_pm3/synth/firmware/ucf/enclustra_ax3_pm3.tcl
offending lines are
false_path {phy_rstn} osc_clk false_path {leds[*]} osc_clk
false_path {phy_rstn} osc_clk
false_path {leds[*]} osc_clk
These two line give warnings when building with Vivado 2019.2 . ( Was this ever valid syntax?? )
Suggest replacement with something like: set_false_path -through [get_ports phy_rstn] set_false_path -through [get_ports leds[*]]
set_false_path -through [get_ports phy_rstn]
set_false_path -through [get_ports leds[*]]
Relevant for DUNE timing system and AIDA-2020 TLU which both use the AX3
The text was updated successfully, but these errors were encountered:
+set_false_path -through [get_ports phy_rstn]
set_property IOSTANDARD LVCMOS25 [get_ports {leds[]}] @@ -59,7 +58,7 @@ set_property PACKAGE_PIN M16 [get_ports {leds[0]}] set_property PACKAGE_PIN M17 [get_ports {leds[1]}] set_property PACKAGE_PIN L18 [get_ports {leds[2]}] set_property PACKAGE_PIN M18 [get_ports {leds[3]}] -false_path {leds[]} osc_clk +set_false_path -through [get_ports leds[*]]
Sorry, something went wrong.
No branches or pull requests
The constraints file for the Enclustra AX3 has two buggy lines
File: boards/enclustra_ax3_pm3/synth/firmware/ucf/enclustra_ax3_pm3.tcl
offending lines are
false_path {phy_rstn} osc_clk
false_path {leds[*]} osc_clk
These two line give warnings when building with Vivado 2019.2 . ( Was this ever valid syntax?? )
Suggest replacement with something like:
set_false_path -through [get_ports phy_rstn]
set_false_path -through [get_ports leds[*]]
Relevant for DUNE timing system and AIDA-2020 TLU which both use the AX3
The text was updated successfully, but these errors were encountered: