QPSK transmission and reception in GNURadio

白昼怎懂夜的黑 提交于 2019-12-24 18:33:33

问题


I have implemented this:

Constellation plot of receiver side is same as that of transmitter but it disappears for some moment and is not continuous, It flickers and keeps on moving around and for a very short moment show a garbage plot also.

How to resolve that to get a correct continuous plot?


回答1:


Never use a "Throttle" block in a hardware flow graph.

What it does is just slow down the processing speed "about roughly" to the requested rate on average. That will sooner or later lead to your computer not fetching the samples from your hardware source quick enough, and you run into overflows.

That is probably the moment when you see "garbage" plots.

Generally, 20 MS/s is a lot, and usually, hard drives aren't reliably fast enough at writing away that data. Also disable the file sink if the problem persists.

it disappears for some moment and is not continuous, It flickers and keeps on moving around

Congratulations! You discovered the wireless channel. That's what happens. Consult your wireless communications basics knowledge for more on that; this is not a programming problem :)



来源:https://stackoverflow.com/questions/56506491/qpsk-transmission-and-reception-in-gnuradio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!