Forum Discussion
Altera_Forum
Honored Contributor
11 years agoIf I correctly understand your request, you need to implement a shift-register to serialize (=stream) out of Q-I pins.
This is roughly what you have to do: - define a 5 bit counter which continuosly counts from 0 to 31 again and again - at count=0 latch 32bit FIFO data into a register - for each count up to 31 (included count=0) put data[0] onto output pin and shift the register ( data <= data >> 1 ) and again