Re: [Discuss-gnuradio] question about using qtgui_sink_c from c++

2012-05-21 Thread Stephen
> > Can you send any info or messages when your program aborts? > > Tom It does not appear to happen if I run in the debugger. I've tried many times but never go it to happen in the debugger. ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

Re: [Discuss-gnuradio] question about using qtgui_sink_c from c++

2012-05-21 Thread Stephen
On 5/20/2012 4:44 PM, Tom Rondeau wrote: > > Can you send any info or messages when your program aborts? > Segmentation fault (core dumped) Process returned 139 (0x8B) sometimes there is a core file and sometimes there isn't. ___ Discuss-gnuradio

[Discuss-gnuradio] problem linking app with qtgui_sink_c

2012-05-21 Thread Stephen
Hey, I'm having a problem building my application. If anyone can tell me what I'm doing wrong it would be appreciated. All of the files I'm talking about are in gr-qtgui/lib There is a public routine, set_yaxis, in FrequencyDisplayPlot that I want to call. A pointer to that class is used in spec

Re: [Discuss-gnuradio] How to configure SBX with two channels, one for communications, one for sensing?

2012-05-21 Thread Josh Blum
On 05/21/2012 06:57 PM, Alex Zhang wrote: > A little confused. > > I am using the gnuradio-companion to configure the uhd.usrp_resource. > What is the difference between the rf_freq and the center_freq? How the Basically, you have two down conversion chains that share a common RF frontend, but

Re: [Discuss-gnuradio] How to configure SBX with two channels, one for communications, one for sensing?

2012-05-21 Thread Alex Zhang
A little confused. I am using the gnuradio-companion to configure the uhd.usrp_resource. What is the difference between the rf_freq and the center_freq? How the tune_request (is it a UHD method?) can be reflected in the gnuradio-companion setting? On Mon, May 21, 2012 at 6:29 PM, Josh Blum wrote

Re: [Discuss-gnuradio] How to configure SBX with two channels, one for communications, one for sensing?

2012-05-21 Thread Josh Blum
On 05/21/2012 04:12 PM, Alex Zhang wrote: > Thanks! > > I am trying to set up two channels on RX2 as Nick said. And the subdev is > set as "A:0 A:0". Please see the attachement for the GRC flow graph. > > But my problem is that it seems that both the channels can not receive the > expected sign

Re: [Discuss-gnuradio] How to configure SBX with two channels, one for communications, one for sensing?

2012-05-21 Thread Josh Blum
On 05/21/2012 03:09 PM, Alex Zhang wrote: > Hi, > > What I want to do is try to use the two antennas of SBX simultaneously. > > The TX/RX is used for duplex communications and the RX2 is for sensing. The > two antennas are working different frequencies. > But this solution seems to be unfeasibl

[Discuss-gnuradio] How to configure SBX with two channels, one for communications, one for sensing?

2012-05-21 Thread Alex Zhang
Hi, What I want to do is try to use the two antennas of SBX simultaneously. The TX/RX is used for duplex communications and the RX2 is for sensing. The two antennas are working different frequencies. But this solution seems to be unfeasible, as someone said the receiver chain of SBX is the same.

[Discuss-gnuradio] Python manual

2012-05-21 Thread Tom Rondeau
Hi everyone, I just wanted to point out a new feature of GNU Radio. Thanks to Ben Reynwar, we have a new Python manual. You can find the current version for GNU Radio here: http://gnuradio.org/redmine/projects/gnuradio/wiki/Old-sphinx Like the Doxygen manual, this page will be updated with every

Re: [Discuss-gnuradio] How to implement a Packet Sink Block as simple as possible

2012-05-21 Thread Josh Blum
> I wonder whether there is a simpler way - without the need of a > state-machine, queue and watcher thread. The only thing I practically > need is to map the demodulated bits into frames (of variable length). > I don't think a full blown packet stack should be necessary or a queue > data structur

[Discuss-gnuradio] How to implement a Packet Sink Block as simple as possible

2012-05-21 Thread Marius
Hi! I have some questions regarding the implementation of Packet Sinks with GNU Radio in general. Since GNU Radio 3.6 there are some new blocks available like the Packet Encoder and the Packet Decoder. Also the Simple Framer Block. I haven't had success in utilizing them. I wonder whether there i

Re: [Discuss-gnuradio] file sink issue

2012-05-21 Thread Ben Reynwar
On Mon, May 21, 2012 at 12:19 AM, ambily joseph wrote: > Sir > > I am trying to build an SID SDR receiver,,where i require a file sink... > When i run my flow graph,,i get a file of format octet-stream being written > into my computer. > But i am not able to access or open my dat octet-stream file

[Discuss-gnuradio] Log power FFT block - bug?

2012-05-21 Thread Urban Kuhar
Hi everyone! I've been using log power FFT block for signal power estimation. I've fed the output of Log Power block to my custom block in which I search for peak in power spectrum and then I sum up bins left and right from that peak until the turn is reached. C++ code for power estimation: /

[Discuss-gnuradio] file sink issue

2012-05-21 Thread ambily joseph
Sir I am trying to build an SID SDR receiver,,where i require a file sink... When i run my flow graph,,i get a file of format octet-stream being written into my computer. But i am not able to access or open my dat octet-stream file. Sir may i know how can i access the data being written into it?