[Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-11 Thread Chad R
Good day. I'm wondering if you can help me. I have a B210 board connected to a jetson tk1 and I am trying to send over one port and receive over two. The hardware setup is the RX/TX board connected to an RF filter connected to a splitter and the connected to the two RX2 ports. When I run one TX an

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-11 Thread Marcus D. Leech
On 09/11/2015 07:56 AM, Chad R wrote: Good day. I'm wondering if you can help me. I have a B210 board connected to a jetson tk1 and I am trying to send over one port and receive over two. The hardware setup is the RX/TX board connected to an RF filter connected to a splitter and the connected

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-12 Thread Chad R
Thanks for the advice Marcus However I updated UHD to version 3.9 the latest stable release from the ettus binary files and I'm still getting the error but now instead of just D its randomly S's and D's. The S's is a sequence error? On Fri, Sep 11, 2015 at 4:21 PM, Marcus D. Leech wrote: >

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-13 Thread Chad R
Hi Marcus I tried what you said and I'm still getting the overflow errors. I've attached a link of my flowgraph if it will maybe help to solve this issue. http://imgur.com/yI96ZMw On Sun, Sep 13, 2015 at 1:01 PM, Chad R wrote: > Hi Marcus I tried what you said and I'm still getting the overflow

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-13 Thread Marcus D. Leech
On 09/13/2015 07:02 AM, Chad R wrote: Hi Marcus I tried what you said and I'm still getting the overflow errors. I've attached a link of my flowgraph if it will maybe help to solve this issue. http://imgur.com/yI96ZMw Ah. Bundle them into a single multi-channel USRP source/sink. There's no s

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-14 Thread Chad R
Awesome. Thank you I got it to work in gnuradio-companion however now when I try to implement it in my python project I get the error. thread[thread-per-block[3]: ]: EnvironmentError: IOError: Radio ctrl (0) packet parse error - AssertionError: packet_info.packet_count == (seq_to_ack & 0xfff) in

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-14 Thread Marcus D. Leech
On 09/14/2015 07:03 AM, Chad R wrote: Awesome. Thank you I got it to work in gnuradio-companion however now when I try to implement it in my python project I get the error. thread[thread-per-block[3]: ]: EnvironmentError: IOError: Radio ctrl (0) packet parse error - AssertionError: packet_inf

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-14 Thread Chad R
My complete code is: class Tx1_Rx2(gr.top_block): def __init__(self, nsamps): gr.top_block.__init__(self, "Tx1_Rx2") ## # Variables ## self.samp_rate = samp_r

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-14 Thread Marcus D. Leech
Again, could you confirm which UHD version you're using, did you upgrade to the latest? Also, you're probably better-off doing things "in the Gnu Radio way", rather than loading into a vector and doing DSPish things "out of band". You might want to learn how to write Python blocks, since 64

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-22 Thread Chad R
Good day Marcus I am using the most recent version of UHD. The problem I was encountering was due to the USB buffer not clearing before the next data being loaded. This was solved by adding a pause after running the GNURadio program. This however meant I could not run my program in "real time" so

Re: [Discuss-gnuradio] 2Rx 1Tx overflow error

2015-09-22 Thread mleech
I would load it at the time the block is instantiated, in its "make" method, and load it into instance-specific data. On 2015-09-22 06:27, Chad R wrote: > Good day Marcus > > I am using the most recent version of UHD. The problem I was encountering was > due to the USB buffer not clearing