[Discuss-gnuradio] Installatio of GNUradio

2013-10-18 Thread Sohaib Khan
Sir kindly guide me how to install GNUradio... what are the steps... IM using Linux Mint If there is any blog regarding this kindly send me the link. SOHAIB ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinf

[Discuss-gnuradio] [coproc] Domain concept for blocks and ports

2013-10-18 Thread Sylvain Munaut
Hi, This is an evolution of a concept that was mentioned at GRcon which I really liked and I thought a bit more about it. The general idea is that each block and each port within blocks would have a "domain" associated to it. For the blocks this would essentially represent where that block is ru

[Discuss-gnuradio] recv_frame_size and send_frame_size

2013-10-18 Thread Baier
Hi all, I have changed recv_ frame_size and send frame by typing uhd_usrp_probe "addr0=198.168.10.2,recv_frame_size=4096, send:frame_size=4096". I have also change the MTU size on my host computer to 4096. After starting gnuradio companion the frame size was set to 1472 bytes again. What is h

[Discuss-gnuradio] Sampling rate issue

2013-10-18 Thread Sandhya G
HI everyone , ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Sampling rate issue

2013-10-18 Thread Sandhya G
Hi everyone , I'm doing a small experiment i.e FM transmitter using gnuradio and usrp b100.i'm facing problem to set the output sampling rate.How exactly should be the sampling rate at each stage to transmit the audio file.Below is the grc file of my flowgraph Please can anyone help

Re: [Discuss-gnuradio] How to read the file from "File Sink" in GRC?

2013-10-18 Thread Nemanja Savic
very simple. this is part of my code for reading complex signal, but mind that i have separated real and imaginary values, there is a way to read in an array of complex i suppose. file = fopen(read_path, 'r'); %fseek(file, 194*8, 'bof'); data = fread(file, 'single', 'l')

Re: [Discuss-gnuradio] Using USRP to transmit and receive samples

2013-10-18 Thread Marcus Müller
Hi JPL, .mat is really just a complicated container format for all kind of matlab data -- GNU Radio can't directly deal with that, although with SciPy you could create something that will be able to parse .mat files; but that is quite useless, as you could as well use Matlab to write something

[Discuss-gnuradio] zero ninput_items_required[0]

2013-10-18 Thread Nemanja Savic
Hi list, I am designing very simple FSK modulator. The principle of operation is following: based on symbol value nco generates baseband signa. The problem is somewhere in my forecast function, but I can't figure out where, probably because of misunderstanfing of something. The body of my forecas

Re: [Discuss-gnuradio] zero ninput_items_required[0]

2013-10-18 Thread Martin Braun (CEL)
On Fri, Oct 18, 2013 at 02:32:48PM +0200, Nemanja Savic wrote: > The body of my forecast function is: > > ninput_items_required[0] = noutput_items * d_sym_rate / d_sampling_freq; > printf("ninput_items_required %d, noutput_items %d\n", ninput_items_required > [0], noutput_items); If d_sym_rate an

[Discuss-gnuradio] GRC USRP source/sink block - IP address

2013-10-18 Thread Alexander B
Hello all just looking for some help regarding the USRP N210 in GRC. I'm having a problem with the IP address in GRC. I have looked around but the only material I have found regarding IP address relates to setting up the N210 on the network. That part I have correct. -> I can ping the device ->

Re: [Discuss-gnuradio] zero ninput_items_required[0]

2013-10-18 Thread Nemanja Savic
Thank you Martin, I will try with the sync_decimator, but it is also important for me to unterstand what's happening here. So, I have vector source -> throttle -> fsk_modulator -> scope sink. Vector source generates 8 symbols. From where scheduler starts, from source or from the sink? And why it di

Re: [Discuss-gnuradio] GRC USRP source/sink block - IP address

2013-10-18 Thread Martin Braun (CEL)
On Fri, Oct 18, 2013 at 06:06:16AM -0700, Alexander B wrote: > That part I have correct. > -> I can ping the device > -> uhd_find_devices returns as it should > -> utilitiy programs (txrx_loopback) work > > My problem I think is in integration with GRC. You need to specify addr="IP", not just the

Re: [Discuss-gnuradio] GRC USRP source/sink block - IP address

2013-10-18 Thread Alexander B
Thanks for the reply Martin yeah I got it now. I had actually tried that but I put: addr="192.168.10.2" in the address field where it should be: addr=192.168.10.2 Thanks again Alex B -- View this message in context: http://gnuradio.4.n7.nabble.com/GRC-USRP-source-sink-block-IP-address-tp4

Re: [Discuss-gnuradio] How to make modified uhd/host/examples

2013-10-18 Thread Bennett, David S. (Scott)
> Message: 4 > Date: Thu, 17 Oct 2013 12:41:54 -0700 (PDT) > From: Naceur > To: Discuss-gnuradio@gnu.org > Subject: [Discuss-gnuradio] How to make modified uhd/host/examples > Message-ID: <1382038914757-44214.p...@n7.nabble.com> > Content-Type: text/plain; charset=us-ascii > > Hello GR Forum, >

Re: [Discuss-gnuradio] How to read the file from "File Sink" in GRC?

2013-10-18 Thread JPL
Thanks Nemanja. Have you ever try reading Byte data in Matlab? On Fri, Oct 18, 2013 at 4:31 AM, Nemanja Savic wrote: > very simple. this is part of my code for reading complex signal, but mind > that i have separated real and imaginary values, there is a way to read in > an array of complex i

[Discuss-gnuradio] [volk] google hangout/meeting

2013-10-18 Thread West, Nathan
I think it might be good for whoever would be interested in VOLK to get together for another meeting in a couple of weeks to discuss any progress and to include anyone who was not at the inaugural meeting at GRCon. A rough agenda: * Data collected so far from pybombs -- what can we get out of it *

Re: [Discuss-gnuradio] recv_frame_size and send_frame_size

2013-10-18 Thread Ian Buckley
Parameters you pass to UHD like this are not persistent between runs, the hardware is re-initialized each time so you must pass them each time. In GRC you would pass the parameters as per the example I've attached. -Ian args_example.grc Description: Binary data On Oct 18, 2013, at 2:10 AM, B

[Discuss-gnuradio] How to make an FFT block in c++

2013-10-18 Thread Tommy Tracy II
Hello, I'm trying to make an FFT block in my hierarchical block, but I cannot seem to find the correct syntax. I'm trying to make it with a BLACKMAN_HARRIS windowing function, and it's easy in a python program: fft_forward = fft.fft_vfc(window_size, True, (fft.blackmanh

Re: [Discuss-gnuradio] How to make an FFT block in c++

2013-10-18 Thread Alexandru Csete
On Fri, Oct 18, 2013 at 10:05 PM, Tommy Tracy II wrote: > Hello, > > I'm trying to make an FFT block in my hierarchical block, but I cannot seem > to find the correct syntax. > I'm trying to make it with a BLACKMAN_HARRIS windowing function, and it's > easy in a python program: > >

Re: [Discuss-gnuradio] Using USRP to transmit and receive samples

2013-10-18 Thread JPL
Hello, I found out two *.grc files, tx_ofdm and rx_ofdm, under gr_digital/examples/ofdm. Don't know if this can be realized, first test running the steps without changing any parameters in *.grc. (A) use *.dat generated from Matlab (I saved a set of wav audio), (B) place it as input in the tx_ofd