Re: Re[Discuss-gnuradio] al-time video receiving?

2008-06-19 Thread Lin HUANG
You may try 'VideoLAN'. It supports IP streaming output and input. Then you can make your TX RX as an IP tunnel. BR HUANG Lin 2008/6/19, Brook Lin <[EMAIL PROTECTED]>: > > > Hi All, > > I am using benchmark_tx.py and benchmark_rx.py to transmit and receive > video > file. For now, I have a video

[Discuss-gnuradio] dbpsk mod/demod

2008-06-19 Thread mehdimolu
Hi, I connect dbpsk modulator to dbpsk demodulator. I expected that input and output must be the same but it is not. for instance input vector is (0, 1, 1) while output vector is (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0). what is the reason? help is appreciated. -- Vie

Re: [Discuss-gnuradio] dbpsk mod/demod

2008-06-19 Thread Eric Blossom
On Thu, Jun 19, 2008 at 05:16:17AM -0700, mehdimolu wrote: > > Hi, > I connect dbpsk modulator to dbpsk demodulator. I expected that input and > output must be the same but it is not. > for instance input vector is (0, 1, 1) while > output vector is (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0

Re: [Discuss-gnuradio] dbpsk mod/demod

2008-06-19 Thread mehdimolu
hi, the code I wrote is #!/usr/bin/env python from gnuradio import gr, gru, modulation_utils from gnuradio import blks2 src_data = (0,1,1) Bsrc = gr.vector_source_b(src_data,False) Bsink = gr.vector_sink_b() def build_graph(): fg = gr.top_block () Bmod = blks2.

[Discuss-gnuradio] Re: dbpsk mod/demod

2008-06-19 Thread Eric Blossom
> Eric Blossom wrote: > > > > On Thu, Jun 19, 2008 at 05:16:17AM -0700, mehdimolu wrote: > >> > >> Hi, > >> I connect dbpsk modulator to dbpsk demodulator. I expected that input and > >> output must be the same but it is not. > >> for instance input vector is (0, 1, 1) while > >> output vector i

[Discuss-gnuradio] two possible bugs in qpsk receiving with GNU radio

2008-06-19 Thread Zenny Zhang
I was working on qpsk receiving with GNU radio and I was wondering if these are something we should change. 1. The qpsk constellation in the current code seems to be (1,0), (0,1j), (-1,0), (0,-1j). Should it be rotated by 45 degrees? 2. I understand that in the current mpsk_receiver_cc

Re: [Discuss-gnuradio] two possible bugs in qpsk receiving with GNU radio

2008-06-19 Thread Brian Padalino
On Thu, Jun 19, 2008 at 12:52 PM, Zenny Zhang <[EMAIL PROTECTED]> wrote: > I was working on qpsk receiving with GNU radio and I was wondering if > these are something we should change. > > 1. The qpsk constellation in the current code seems to be (1,0), > (0,1j), (-1,0), (0,-1j). Should it be

Re: [Discuss-gnuradio] two possible bugs in qpsk receiving with GNU radio

2008-06-19 Thread Brian Padalino
On Thu, Jun 19, 2008 at 2:30 PM, Zenny Zhang <[EMAIL PROTECTED]> wrote: > I installed GNU radio about one and a half months ago and used the tar > ball. The file I used, gr_mpask_receiver_cc.cc, is under directory > /gnuradio-3.1.2/gnuradio-core/src/lib/general/. Maybe the repository > has some n

Re: [Discuss-gnuradio] two possible bugs in qpsk receiving with GNU radio

2008-06-19 Thread Zenny Zhang
On Thu, Jun 19, 2008 at 1:35 PM, Brian Padalino <[EMAIL PROTECTED]> wrote: > It appears that is the case. Looking at the changeset located here: > >http://gnuradio.org/trac/changeset/7389#file6 > > It appears as if around 5 months ago this was changed. Thanks! Looks like I am using some old

[Discuss-gnuradio] benchmark experiment

2008-06-19 Thread mehdimolu
hi, I try to use benchmark in gnuradio. When I use gmsk which is default modulation scheme there is not error in detection of packets in the receiver but when I use other modulation options like dbpsk detection of all packets fail. why does it happen? thanks, Mehdi -- View this message in contex

Re: [Discuss-gnuradio] benchmark experiment

2008-06-19 Thread Brian Padalino
On Thu, Jun 19, 2008 at 3:58 PM, mehdimolu <[EMAIL PROTECTED]> wrote: > > hi, > I try to use benchmark in gnuradio. When I use gmsk which is default > modulation scheme there is not error in detection of packets in the receiver > but when I use other modulation options like dbpsk detection of all p

Re: [Discuss-gnuradio] Random sampling

2008-06-19 Thread Brian Padalino
On Thu, Jun 19, 2008 at 12:00 AM, dustin_m <[EMAIL PROTECTED]> wrote: > > Hello All... > > I am new to gnuradio and the USRP and I am trying to find a way to send > pseudorandomly selected samples from the ADC down the USB pipe to gnuradio > for processing. I have an algorithm for selecting the sa

Re: [Discuss-gnuradio] Random sampling

2008-06-19 Thread Matt Ettus
dustin_m wrote: Hello All... I am new to gnuradio and the USRP and I am trying to find a way to send pseudorandomly selected samples from the ADC down the USB pipe to gnuradio for processing. I have an algorithm for selecting the samples, but I am not sure as to which parts of the Verilog sourc

Re: [Discuss-gnuradio] Random sampling

2008-06-19 Thread Juha Vierinen
>> I am new to gnuradio and the USRP and I am trying to find a way to send >> pseudorandomly selected samples from the ADC down the USB pipe to gnuradio >> for processing. I have an algorithm for selecting the samples, but I am not >> sure as to which parts of the Verilog source files I need to ch

Re: [Discuss-gnuradio] Random sampling

2008-06-19 Thread Dustin Maas
Juha, Brian, I am working on a research project that involves wide-band spectral estimation with the USRP. In this case, the bottleneck is USB 2.0, which is why I need to implement my sample selection algorithm on the FPGA. Thanks for your interest. On Jun 19, 2008, at 3:11 PM, Juha Vi

Re: [Discuss-gnuradio] GNURadio on VmWare: success!

2008-06-19 Thread Richard Clarke
Has anyone downloaded Chiara's VMware GNU Radio image? Did it work for you? When I unzip it I get a report of a CRC fail error, and the VM machine is reported as corrupt by VMware Server. Is it just my copy or is the source file broken? Thanks Cheers Richard Chris Albertson wrote: On Tue,

Re: [Discuss-gnuradio] Random sampling

2008-06-19 Thread Brian Padalino
On Thu, Jun 19, 2008 at 7:02 PM, Dustin Maas <[EMAIL PROTECTED]> wrote: > Juha, Brian, > > I am working on a research project that involves wide-band spectral > estimation with the USRP. In this case, the bottleneck is USB 2.0, which is > why I need to implement my sample selection algorithm on th