[Discuss-gnuradio] Understanding GNU Radio Debugging

2017-11-16 Thread Sumit Kumar
(My comments are unbold, system commands and prints are bold) Hi, I followed tutorials below: https://wiki.gnuradio.org/index.php/TutorialsGDB https://wiki.gnuradio.org/index.php/TutorialsDebugging I made a dummy block. I am learning to debug GR apps. I put the following inside my work function

Re: [Discuss-gnuradio] Project Call November Tomorrow!

2017-11-16 Thread Philip Balister
Is that Thursday or Friday? On 11/15/2017 09:10 PM, Martin Braun wrote: > Quick reminder that our montly project call is happening tomorrow, 10 AM > Pacific, 19:00 CET, in the usual place. > > Cheers, > Martin > > ___ > Discuss-gnuradio mailing list >

Re: [Discuss-gnuradio] Project Call November Tomorrow!

2017-11-16 Thread Michael Dickens
Thursday / today. 1 PM US/Eastern for those of us in that timezone. - MLD On Thu, Nov 16, 2017, at 08:27 AM, Philip Balister wrote: > Is that Thursday or Friday? > > On 11/15/2017 09:10 PM, Martin Braun wrote: > > Quick reminder that our montly project call is happening tomorrow, 10 AM > > Pacifi

Re: [Discuss-gnuradio] Question on number of input items per work call

2017-11-16 Thread Michael Dickens
Hi Anil - In the case where your block gets 4095 items, it can't process all of those items. Your block performs seven 512-length FFTs, consumes 7x512 == 3584 items, and generates 3584 items, leaving 511 unprocessed. The code that calls your block's "::work" method will handle making sure that the

[Discuss-gnuradio] Global socket in the flowgraph

2017-11-16 Thread Carlos Alberto Ruiz Naranjo
Hello, dataCapture blocks are TCP clients with different requests. I want use the same socket for the 3 blocks. It is posible? Thank you. [image: Imágenes integradas 1] ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/m

[Discuss-gnuradio] How to use the AMC part of GR-Inspector?

2017-11-16 Thread Torbjörn Olsson
Hi All, I have been trying to look at the concept of automatic modulation classification by using the GR-Inspector blocks in GNU-Radio. However, I have not been successful in getting the AMC blocks to work as I had expected. After some reading I now think I know what is my major problem; I need

Re: [Discuss-gnuradio] Global socket in the flowgraph

2017-11-16 Thread Marcus Müller
Sure, unless the dataCapture blocks (which I don't know) have a bug. Best regards, Marcus On Thu, 2017-11-16 at 15:26 +0100, Carlos Alberto Ruiz Naranjo wrote: > Hello, > > dataCapture blocks are TCP clients with different requests. I want use the > same socket for the 3 blocks. It is posible? >

Re: [Discuss-gnuradio] Global socket in the flowgraph

2017-11-16 Thread Carlos Alberto Ruiz Naranjo
Thank you Marcus. Where do I create the socket and how I pass it to the blocks? On Nov 16, 2017 19:07, "Marcus Müller" wrote: > Sure, unless the dataCapture blocks (which I don't know) have a bug. > > Best regards, > Marcus > On Thu, 2017-11-16 at 15:26 +0100, Carlos Alberto Ruiz Naranjo wrote:

Re: [Discuss-gnuradio] Global socket in the flowgraph

2017-11-16 Thread Marcus Müller
Hi Carlos, I don't know the blocks, hence I can't tell you anything about them. Best regards, Marcus On 16.11.2017 19:32, Carlos Alberto Ruiz Naranjo wrote: > Thank you Marcus. > > Where do I create the socket and how I pass it to the blocks? > > On Nov 16, 2017 19:07, "Marcus Müller"

[Discuss-gnuradio] Interpreting the recieved packet

2017-11-16 Thread Rensi Mathew
Hi all I am using a SDR B200 to receive packets from a TelsoB. I am using a message debug box after the PHY layer. The output I am getting is : 41 98 ad cd ab ff ff 40 2c 81 00 2c 40 32 37 38 0010: 37 00 11 e5 1f 65 4e I am not able to interpret the fields according to 802.15.4 standard. Can

[Discuss-gnuradio] Sync block or general block?

2017-11-16 Thread Ali
Hi to all, I am trying to create an OOT block. There are 6 inputs which are float32 single parameters. There are 3 outputs. 2 of them are again single variable and float32. The last output is a 33x1 vector with float32 entries. Which block type should I use and how should be the forecast function