1
\$\begingroup\$

I have an FPGA design for my Basys 3 that drives the board's 7 segment display to display some numbers. I'm using Vivado.

When I do the timing analysis, the constraint wizard asks me to set the output port delay (being this output ports the signals that go to the 7 segment display). How can I know what delays should I set?

Mitu Raj
11k6 gold badges25 silver badges49 bronze badges
asked Sep 20, 2022 at 11:02
\$\endgroup\$
2
  • 2
    \$\begingroup\$ You don't have to constraint any delay to make it work, it's just an led circuitry with no setup n hold requirements. \$\endgroup\$ Commented Sep 20, 2022 at 11:13
  • \$\begingroup\$ Can I tell Vivado to ignore those outputs when doing its processing? \$\endgroup\$ Commented Sep 20, 2022 at 11:28

1 Answer 1

2
\$\begingroup\$

There is no need to time those paths as there are no clocked synchronous elements with setup/hold requirement at the destination. You can either disable the timing of such paths using set_disable_timing constraint or simply use false_path constraint to exclude them from STA analysis, for e.g:

set_false_path -to [get_ports {o_data}]
answered Sep 20, 2022 at 17:49
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.