Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Daniele Disco
Thank you for your answer. I understand your position but I'm not an expert of cmake and at the moment I use the uhd library to compile my app. There is a general template or something like a procedure (step by step) to build all the directories, files and so on to cross compile an app using the

Re: [Discuss-gnuradio] Connecting two USRP B200 radios

2015-11-06 Thread James Humphries
For RX gain, you will probably need around 20-40dB. Yes, you should place the 30dB attenuator in line with your connection. You should be able to slowly increase the transmit gain until you see the signal. Double check that the correct ports on each board on in use, a green light will light up

[Discuss-gnuradio] Ettus E310 FM Radio

2015-11-06 Thread John B. Wood
Hello, all. I just subscribed to the mailing list and am using an Ettus E310 USRP connected to a Ubuntu-GRC platform via LAN. Gnuradio Companion (GRC) works more efficiently this way when compared to doing an SSH -X session to the E310 and using the E310"s internal GRC. Of course the LAN has

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-06 Thread Nemanja Savic
Hello, thanx Alexandre, that's what i was looking for. So with your suggestion the line looks like this: /usr/bin/c++ -O3 -DNDEBUGCMakeFiles/test-TMS.dir/test_TMS.cc.o CMakeFiles/test-TMS.dir/qa_TMS.cc.o -o test-TMS -rdynamic /usr/local/lib64/libgnuradio-core.so -lboost_filesystem-mt

Re: [Discuss-gnuradio] Ettus E310 FM Radio

2015-11-06 Thread Ron Economos
There is a stereo FM receiver in gr-rds. If you delete the RDS specific blocks in the example flow graph (gr-rds/apps/rds_rx.grc), you don't even have to compile gr-rds. https://github.com/bastibl/gr-rds Ron On 11/06/2015 11:05 AM, John B. Wood wrote: Hello, all. I just subscribed to the

Re: [Discuss-gnuradio] undefined reference to file_sink_base

2015-11-06 Thread Nemanja Savic
How can I check/add -L and then path to the gnuradio blocks library in order to force setup to use it? Or maybe I am on th ewrong way? On Thu, Nov 5, 2015 at 6:25 PM, Nemanja Savic wrote: > Tried that already a few times and nothing. Is there any so called cash > where cmake

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Philip Balister
On 11/06/2015 08:06 AM, Daniele Disco wrote: > HI Marcus! > I followed yours suggestions but what is the right way to cross compile a > new applications? > At the moment I found a "dirty" shortcut using the uhd library: > I add my application in the examples directory of uhd library; I modify the

Re: [Discuss-gnuradio] Message passing.

2015-11-06 Thread Tom Rondeau
On Wed, Nov 4, 2015 at 3:06 PM, M. Ranganathan wrote: > Hello! > > I am building a monitor where capture of I/Q samples to a file is > triggered on an pluggable detection scheme. For example, I want to capture > say 10 seconds of I/Q samples when LTE is detected. > > Is this an

[Discuss-gnuradio] Connecting two USRP B200 radios

2015-11-06 Thread Ashish Pasha Sheikh
Hello everyone, i am new to the world of SDR. I currently have two USRP B200 radios. I would like to connect the Tx port of one SDR to Rx port of second SDR using a cable to visualize the transmitted bits. I am generating random bits with Ts=1/1 and 50 samples per frame. Using a rectangular

Re: [Discuss-gnuradio] Connecting two USRP B200 radios

2015-11-06 Thread James Humphries
Hi Ash, Yes, you need to use an attenuator if you are connecting the B200's directly together with a cable. I would recommend at least 30dB of attenuation, but that depends on your settings. It is recommended that you do not input more that -15 dBm into the receiver of the B200, as this can

Re: [Discuss-gnuradio] Connecting two USRP B200 radios

2015-11-06 Thread Marcus D. Leech
On 11/06/2015 10:46 AM, Ashish Pasha Sheikh wrote: Hello everyone, i am new to the world of SDR. I currently have two USRP B200 radios. I would like to connect the Tx port of one SDR to Rx port of second SDR using a cable to visualize the transmitted bits. I am generating random bits with

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Daniele Disco
Thank you Philip -- View this message in context: http://gnuradio.4.n7.nabble.com/On-the-right-approach-for-developing-applications-to-be-run-on-an-E310-tp55779p56785.html Sent from the GnuRadio mailing list archive at Nabble.com. ___

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Daniele Disco
Thank you Philip but I was thinking to a "simpler" procedure like gcc-arm app.cpp -luhd -letc. -letc. -o app It is possible avoid the cmake passage? Daniele -- View this message in context:

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread West, Nathan
You can compile simple programs very similarly to how you normally use gcc/g++. Source the OE SDK, then call CC or CXX. The environment script exports these variables the way you would expect if you're familiar with cross compiling at all. You *could* just call arm-oe-linue-gnueabi, but you

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Daniele Disco
HI Marcus! I followed yours suggestions but what is the right way to cross compile a new applications? At the moment I found a "dirty" shortcut using the uhd library: I add my application in the examples directory of uhd library; I modify the CMakeLists.txt in the directory examples and make "all"

Re: [Discuss-gnuradio] On the "right" approach for developing applications to be run on an E310

2015-11-06 Thread Philip Balister
On 11/06/2015 12:36 PM, West, Nathan wrote: > You can compile simple programs very similarly to how you normally use > gcc/g++. Source the OE SDK, then call CC or CXX. The environment script > exports these variables the way you would expect if you're familiar with > cross compiling at all. You

Re: [Discuss-gnuradio] Frequency discriminator using a frequency to voltage converter

2015-11-06 Thread madengr
Hmm.. maybe it is. I have done it in (shudder) LabView and it's nice since noise reduces at 1/N instead of 1/sqrt(N); N is number of averages. Maybe I'll try it tonight with just discrete blocks to compare them side by side. Just something that can't be done with a normal spectrum analyzer.

[Discuss-gnuradio] Estimate CPU usage

2015-11-06 Thread haroldmk
Hello all, I am working with GNU Radio on a Zedboard (which is a Xilinx Zynq-7000 based device). The linux dist. used is the one from this page: http://gnuradio.org/data/sdk/zedboard_armv7a-sf-vfp-neon/ I have described some functions on the FPGA of the Zynq and I am able to send and receive

Re: [Discuss-gnuradio] Estimate CPU usage

2015-11-06 Thread Philip Balister
On 11/06/2015 03:54 PM, haroldmk wrote: > Hello all, > > I am working with GNU Radio on a Zedboard (which is a Xilinx Zynq-7000 based > device). The linux dist. used is the one from this page: > http://gnuradio.org/data/sdk/zedboard_armv7a-sf-vfp-neon/ > > I have described some functions on the