discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] data from flow graph is not updated


From: lishan_wh
Subject: [Discuss-gnuradio] data from flow graph is not updated
Date: Sun, 22 May 2011 22:13:16 +0800 (CST)

Hi, all
  I met a problem when I tried to read data from USRP. I hope someone can help me. Thanks.
  Here is my flow graph:
  source_c --> keep_one_in_n --> g.head --> gr.complex_to_mag --> gr.vector_sink_f

if __name__ == '__main__':
    tb = top_block()
        try:
                tb.start()              # start executing flow graph in another thread...
                time.sleep(1)
                main_loop(tb)       
        except KeyboardInterrupt:
                pass

  In main_loop function, I read data from vector_sink_f.
def main(tb):
    while(True):
        time.sleep(1) 
        data = "">
But when I print data, the result shows that data doesn't change at all. I don't why. In my opinion, data should be updated as the flow graph runs. And that changing data with time is what I wanted. Does anybody know the reason? Thanks!
             Ally



reply via email to

[Prev in Thread] Current Thread [Next in Thread]