Re: [Discuss-gnuradio] (no subject)

2014-07-02 Thread Marcus Müller
Hi GP, ofdm_loopback.grc covers only the physical aspects of the transmission. What you are describing is a flow control problem; you'd need to figure out yourself how to make your data stream fit into the packets. A typical way would be to send the length of your file, and then just fill up the l

[Discuss-gnuradio] (no subject)

2014-07-02 Thread GP 2014
When I ran the example ofdm_loopback.grc, i used a file source to send data through the transmitter and checked the output after the receiver in a file sink ; i found that if the packet required to be sent is less than the defined packet_length ; then the packet is not sent ? how to send the last p

Re: [Discuss-gnuradio] How do I know when my flow graph has finished in a non-blocking way?

2014-07-02 Thread Marcus Müller
Hi Eskil, QT has its own threading library that you'll need to use to spawn a new thread to do the blocking calls in: http://pyqt.sourceforge.net/Docs/PyQt4/qthread.html (sadly, that page is still C++ centric) PyQT4 usually comes with a set of nice examples, which have been useful for me over the

[Discuss-gnuradio] How do I know when my flow graph has finished in a non-blocking way?

2014-07-02 Thread Eskil Varenius
Dear friends of GNU Radio, I have a question about blocking, threads and GUI. Thing is, I am writing an GUI application (in PyQT4) where the user can start a GNU Radio flowgraph by a button. The flowgraph records data from an USRP and some additional blocks. Now, I want only a finite amount of data

Re: [Discuss-gnuradio] Live DVD & X310

2014-07-02 Thread David Miller
David hangs up his network cable and sighs.. "yeah, power cycle it, like it says after burning! " Sorry, Thanks All. On 30/06/14 20:31, Ben Hilburn wrote: David - Be sure to wait until the burner utility TELLS YOU IT IS COMPLETE. If you power-cycle in the middle of the burn, it's a great way t

Re: [Discuss-gnuradio] gr-lte errors

2014-07-02 Thread Gabriel Tolón
Finally, I updated the gnu-radio, and following the instructions for gr-lte again it worked. I had installed gnu-radio from sources, so I just updated it with git. Thanks! Gabriel El 01/07/14 08:44, Gabriel Tolón escribió: Hi Marcus, thanks for your answer. I've uninstalled the gr-lte code a

[Discuss-gnuradio] plotting data with the gr_plot_psd_c tool (was Re: Contents of Discuss-gnuradio digest)

2014-07-02 Thread Marcus Müller
Hi , I couldn't really tell the subject of this mail; I think it should be "plotting data with the gr_plot_psd_c tool", is that right? The axes should be labeled: X in the left is time (calculated from f_sample, which is assumed to be 1Hz if not specified), on the right is Hz; Y is amplitude (l

Re: [Discuss-gnuradio] Installing Channel Coding Toolbox on Windows GNURadio

2014-07-02 Thread Marcus Müller
That cgran page says "GNU Radio >= 3.2.2", which indicates it might be terribly outdated and would not work with 3.6.5 (it can't work with 3.7); I don't know if Nico has touched the code base since 2011, but I assume you'll have to go great lengths to get it to work with current GNU Radio versions.

Re: [Discuss-gnuradio] message queues - Inconsistent data problem

2014-07-02 Thread Jérôme Nokin
Hello again, My python code is actually inspired from "Packet Encoder" block (/path/to/gnuradio/.../grc_gnuradio/blks2/packet.py) were I suffer from the same issue. I wrote that python script to make it very simple/short and confirm the troubles. I would be honored if someone could get a try on i