Re: [Discuss-gnuradio] ‘class uhd::usrp::multi_usrp’ has no member named xxx

2012-03-26 Thread Peng Wang
Thank you very much. The problem is fixed. From: Josh Blum To: discuss-gnuradio@gnu.org Sent: Monday, March 26, 2012 11:04 PM Subject: Re: [Discuss-gnuradio] ‘class uhd::usrp::multi_usrp’ has no member named xxx Maybe its building against an old header. Did

Re: [Discuss-gnuradio] WAV sink

2012-03-26 Thread John Coppens
On Sun, 25 Mar 2012 20:01:48 -0300 John Coppens wrote: > Hi all. > > A small (?) error: The doc for the wav sink says: > > "Read stream from a Microsoft PCM (.wav) file, output floats. > > Values are within [-1;1]. Check gr_make_wavfile_source() for extra > info." > > This was probably copied

Re: [Discuss-gnuradio] ‘class uhd::usrp::multi_usrp’ has no member named xxx

2012-03-26 Thread Josh Blum
On 03/26/2012 07:51 PM, Peng Wang wrote: > I want to implement some functions in uhd::usrp::multi_usrp, and access these > functions from gnu_uhd_usrp_source. Therefore, I modify the files as follows: > > 1. multi_usrp.hpp > I define the function > virtual void enable_rx_fhop(const bo

[Discuss-gnuradio] ‘class uhd::usrp::multi_usrp’ has no member named xxx

2012-03-26 Thread Peng Wang
I want to implement some functions in uhd::usrp::multi_usrp, and access these functions from gnu_uhd_usrp_source. Therefore, I modify the files as follows:   1. multi_usrp.hpp     I define the function      virtual void enable_rx_fhop(const bool enb, size_t mboard = 0) = 0;   2. multi_usrp.cpp    

Re: [Discuss-gnuradio] WAV sink

2012-03-26 Thread Tom Rondeau
On Sun, Mar 25, 2012 at 7:01 PM, John Coppens wrote: > Hi all. > > A small (?) error: The doc for the wav sink says: > > "Read stream from a Microsoft PCM (.wav) file, output floats. > > Values are within [-1;1]. Check gr_make_wavfile_source() for extra > info." > > This was probably copied for th

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Ben Reynwar
On Mon, Mar 26, 2012 at 10:42 AM, Francisco wrote: > Ben Reynwar reynwar.net> writes: > >> >> I think that the best way to get started is to use Martins gr-modtool. >>  It will help you to make out-of-tree blocks (out-of-tree means >> separate but compatible with your main gnuradio installation).

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Nick Foster
On Mon, Mar 26, 2012 at 10:42 AM, Francisco wrote: > Ben Reynwar reynwar.net> writes: > > > > > I think that the best way to get started is to use Martins gr-modtool. > > It will help you to make out-of-tree blocks (out-of-tree means > > separate but compatible with your main gnuradio installati

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Francisco
Ben Reynwar reynwar.net> writes: > > I think that the best way to get started is to use Martins gr-modtool. > It will help you to make out-of-tree blocks (out-of-tree means > separate but compatible with your main gnuradio installation). > > It can be found at: > https://github.com/mbant/gr-mo

[Discuss-gnuradio] Winrad / HDSDR for Linux?

2012-03-26 Thread chris
Thank you very much for the interesting video! Is there a program like Winrad/HDSDR for Linux? chris ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] wxGUIs and threads

2012-03-26 Thread Arturo Rinaldi
I can't solve a little issue with wxgui and threads. Before the explanation i link my pastebin code : (1) http://pastebin.com/sqbKTJG7 (2) http://pastebin.com/TemTW7cZ the first link is the code to a simple gui with one c*ombobox* and three *textboxes*. My goal is to collect this data in a bu

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Ben Reynwar
I think that the best way to get started is to use Martins gr-modtool. It will help you to make out-of-tree blocks (out-of-tree means separate but compatible with your main gnuradio installation). It can be found at: https://github.com/mbant/gr-modtool On Mon, Mar 26, 2012 at 2:58 AM, Ebtisam Ah

Re: [Discuss-gnuradio] About AD9862 latching data

2012-03-26 Thread Nick Foster
2012/3/26 signalswdm > Dear everyone: >You see in the FPGA codec datas are interpolated into 32Msps and sended > to AD9862. Then AD9862 interpolates the datas by 4. But AD9862 is > configured to latch datas using CLKOUT1,and CLKOUT1 is 64M. Though CLKOUT1 > is not linked to FPGA, it seems a l

[Discuss-gnuradio] About AD9862 latching data

2012-03-26 Thread signalswdm
Dear everyone: You see in the FPGA codec datas are interpolated into 32Msps and sended to AD9862. Then AD9862 interpolates the datas by 4. But AD9862 is configured to latch datas using CLKOUT1,and CLKOUT1 is 64M. Though CLKOUT1 is not linked to FPGA, it seems a little confilcting. So can

[Discuss-gnuradio] Question about RSSI

2012-03-26 Thread virgil passas
Hello, I have a USRP 1 with the XCVR2450 daughterboard attached and i'm trying to take measurements for the RSSI. I found this on the site but it didn't really help me " 1. Analog RSSI (we can read it using AUX ADC) 2. Digital RSSI in FPGA (from output of ADCs) 3. Digital

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Ebtisam Ahmed
Indeed i have read but i cant understand the building process. I built it the i understood but it failed terribly, i have made .h .cc .i and makefile.am. Put them in one folder and then done make. i also tried ./configure and ./bootstrap but it doesnt work Anyways thanx for ur time and help me on

Re: [Discuss-gnuradio] Building new blocks in Gnu Radio

2012-03-26 Thread Martin Braun
Hi Ebtisam, if you've succeeded in making the blocks, I seriously doubt you've read all the intro stuff on the website (e.g. "Using GNU Radio"). MB On Sun, Mar 25, 2012 at 09:38:31PM +0500, Ebtisam Ahmed wrote: > Hi all, > > I am new in GNU Radio and i have recently learned how to make new > b