[Discuss-gnuradio] [GSoC 2017] gr-bokehgui: Updates week 10

2017-07-28 Thread Kartik Patel
Hello all, This week I have tried to implement waterfall plot in Bokeh (they don't provide by default). For more details, check out the latest blog post here . Regards, Kartik Patel PS: Sorry for delayed mail. I forgot to drop a mail to the forum. Uploaded the bl

[Discuss-gnuradio] custom tagged_stream_block basetype and swig

2017-07-28 Thread Miklos Maroti
Dear All, For various reasons I am not happy with the tagged_stream_block implementation, and I have implemented my own version, called tagged_stream_block2 and put it into my OOT module. I can use the gr_modtool to create tagged_stream_blocks and manually change the basetype to my version. Everyt

Re: [Discuss-gnuradio] Issues transmitting and receiving simultaneously on B210

2017-07-28 Thread mleech
The frequency seperation has to be less than the IF channel bandwidth, using a tune_request, you can make this happen using the DDC to shift the two frequencies from within the IF bandwidth.Otherwise, no, there's only a single synthesizer in each direction. I'll post an example tune_request l

Re: [Discuss-gnuradio] Issues transmitting and receiving simultaneously on B210

2017-07-28 Thread Jose Ruvalcaba
Hi Marcus, Thanks for the response. So just to be clear, if I am using the RF:A channel Tx/Rx port at say 200MHz, and wanted to also transmit from the Rx:B channel Tx/Rx port, then the only frequency I can transmit from the second channel would be 200 MHz because both channels are shared right? Is

[Discuss-gnuradio] [GSoC 17] DAB: Updates of this week

2017-07-28 Thread Moritz Luca Schmid
Hi all, I started with the GUI for gr-dab this week. Read about my first approaches and why I am using JSON as a data-interchange format in my latest blog post . Best Luca _

Re: [Discuss-gnuradio] Produce/Consume in python OOT block with multiple IO streams

2017-07-28 Thread Marcus Müller
https://github.com/gnuradio/gnuradio/pull/1396 On 07/28/2017 10:49 AM, Marcus Müller wrote: Hi Bakshi, very short answer: Just like gr::block::consume, there's a gr::block::produce(which_output, how_many_items) [1]. You'd use that and "return WORK_CALLED_PRODUCE". But: that's what you'd d

Re: [Discuss-gnuradio] Produce/Consume in python OOT block with multiple IO streams

2017-07-28 Thread Marcus Müller
Hi Bakshi, very short answer: Just like gr::block::consume, there's a gr::block::produce(which_output, how_many_items) [1]. You'd use that and "return WORK_CALLED_PRODUCE". But: that's what you'd do in C++ As far as I remember, this is not completelywell-wrapped for python. So, for now, t