Forum Discussion
Altera_Forum
Honored Contributor
12 years agoFIR interpolator
Hello guys !! I'm trying to understand the FIR compiler interpolator. I have a complex signal clocked at X MHz. Now I want to have it interpolated by a 3x factor so that the output frequen...
Altera_Forum
Honored Contributor
12 years agoHello
Your data is being generated at 1X clock right? If I understood correctly you are sending the same data 3X to the IP. This will not work as expected, to upsample 3X you need to send your data and then send two "zeroed" data. E.g: Original input data at the 1X clock: 0xA, 0x8, 0x1, 0xF Input data to the FIR IP at 3X clock: 0xA, 0x0, 0x0, 0x8, 0x0, 0x0, 0x1, 0x0, 0x0, 0xF, 0x0, 0x0 Let me know if this helps Thiago