git-artes / gr-isdbt

DTV ISDB-T in GNURadio
http://iie.fing.edu.uy/investigacion/grupos/artes/gr-isdbt/
Other
148 stars 35 forks source link

uhd warning #9

Closed kokoacebedo closed 8 years ago

kokoacebedo commented 8 years ago

After successfully generating and running the different .ts(saeta) raw baseband signals, I've tried using the usrp source and proceed with the obtaining parameters grc file. The simulation had uhd warnings and even if I changed the values, they still re error appear

git-artes commented 8 years ago

Hello,

Let me focus on the last three UHD Warnings. You are using a N210, which it seems (as the UHD is warning you) does not support 8MS/s. The sampling rate used in our examples is based on a B100, using the default 64MHz master clock (which results in a even decimation of 8). This is then followed by a rational resampler of 64/63, which results in the 512/63 MS/s required by the OFDM signal.

I believe the master clock of the N210 is 100MS/s. You should look for a combination of USRP sampling rate and rational resampler that is both supported by the N210 and results in an even decimation, and moreover feeds the rest of the flowgraph with 512/63 MS/s.

I don't know what the first three UHD Warnings mean.

best Federico