JSmit123
New Contributor
6 years agoDid I set up input timing constraints correctly?
I have both clock and data coming from external chip: input_clock, input_data. Datasheet says setup time 3ns, hold time 1ns.
Can you please check if these constraints are correct? I believe so but then I test it on the real device, I receive incorrect data.
create_clock -name input_clock -period 20 [get_ports input_clock]
set_input_delay -clock [get_clocks input_clock] -min 1 [get_ports input_data]
set_input_delay -clock [get_clocks input_clock] -max 17 [get_ports input_data]