Forum Discussion
Altera_Forum
Honored Contributor
7 years agoI already taken the webinar proposed. It is very interesting. I am using the DDIO OUTPUT register to drive the shifted clock :
altddio_out_component altddio_out_component_inst (
.datain_h(1'b0),
.datain_l(1'b1),
.outclock(clk_100),
.dataout(FX3_CLK)
); I am following an example provided by Cypress doing this, but the parallel interface is not driven by another altddio component, instead is driven as a common tristate signal: assign FX3_DQ = (slwr_streamIN_d1_) ? 32'dz : data_gen_stream_in; I note now that the ddio register approach for SDR is the next one: https://www.alteraforum.com/forum/attachment.php?attachmentid=15438 Maybe it is needed to use another altddio_out component to drive the FX3_DQ inout bus?