Forum Discussion
tessellation
New Contributor
5 years agoI have the exact same issue implementing the FFT with a cyclone V with quartus lite. Although for my implementation i need to pause the FFT stream between packets for 144 clk cycles only. Hence, the solution provided here won't help me.
User1582192733150209
Occasional Contributor
5 years agoHi tessellation,
thanks for your reply.
I have tried 2 another solution to solve IPG issue for now, both of them not perfect.
solution 1
install 2 FFT core in parallel and switch input packets to 2 fft core alternately, by such arrangement you will not see any IPG issue, IPG can be 0. cost is FFT resource doubled.
solution 2
change output order to digit reverse, then you will not see IPG issue, but cost is you need other logic to do re-order work.
best regard
Jim
- tessellation5 years ago
New Contributor
Thanks Jim, very helpful