Cyclic Prefix Removal OFDM FFT IEEE802.11
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I am trying to build a receiver in HDL coder for IEEE802.11. I need to remove the first 16 samples of every symbol (cyclic prefix) before feeding the remainder of the symbol in to the FFT.
I wonder if there is way to remove the cyclic prefix prior to the FFT or to attempt to control when the FFT operates on input samples; I have tried both methods but haven't been successful. Any help on this would be much appreciated !
0 commentaires
Réponses (4)
Bharath Venkataraman
le 13 Mai 2014
Modifié(e) : Bharath Venkataraman
le 13 Mai 2014
The method to skip those samples depends on the FFT block you are using. The HDL FFT blocks have a valid or frame start input, which you can keep low for the first 16 samples. This will have the effect of those samples being ignored by the block.
1 commentaire
Bharath Venkataraman
le 14 Mai 2014
Can you post a simpler version of your model for me to take a look at? In R2014a, there is no option for natural order output. the only workaround I can suggest is to use a RAM to do the reversal.
Alternatively, we have an older HDL FFT Streaming block (which is being deprecated) in dspobslib. This has the natural order output option.
Bharath Venkataraman
le 15 Mai 2014
I have modified it to use the workspace for data and valid in. valid in now is high for 64, low for 16, high for 64 and low for the rest of the simulation. After the initial latency, valid out follows the same pattern. I just left the input to be a constant for this simulation.
0 commentaires
Bharath Venkataraman
le 1 Mar 2023
Setting the valid input low for the first 16 samples as shown above will tell the FFT block to ignore those samples.
The FFT block in DSP HDL Toolbox supports bit reversal and natural order both at the input and output.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!