[Discuss-gnuradio] Follow-Up Question: Enabling Rx-A and Rx-B on a single daughterboard

2008-03-31 Thread Jason Anders
I would just like to make a follow up question. Have you enabled Rx-A and Rx-B simultaneously on a single Basic Rx daughterboard? If so, how did you do it? I would just like to receive signals from both ports of a single Basic Rx Daughterboard. Thanks!

Re: [Discuss-gnuradio] Question: Setting Rx-A and RX-B Daughterboard on simultaneously

2008-03-30 Thread Jason Anders
Unfortunately, it didn't. I would like to know how to get data from the two sides of a SINGLE Rx Daughterboard. Currently, I have a daughterboard at the RXA side of the USRP. I want to get data from both input ports of that single daughterboard. Is this possible? Thanks!

[Discuss-gnuradio] Question: Setting Rx-A and RX-B Daughterboard on simultaneously

2008-03-28 Thread Jason Anders
Hi all! Is it possible to set both the Rx-A and the Rx-B (of the BASIC Rx daughterboard) to ON while at the same time allowing I and Q sampling? How will this be done? Thanks! ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

[Discuss-gnuradio] Question: mpsk_receiver_cc

2008-03-28 Thread Jason Anders
I would like to ask how to use mpsk_receiver_cc. Thanks! ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Problem: Accessing RX-B of the basic Rx daughterboard

2008-02-11 Thread Jason Anders
Hi! Thanks for your reply. It was helpful! However, I have another follow-up question. So, basically I won't be able to access RX-A and RX-B simultaneously since I have to set the MUX everytime? Is this correct? Thanks! ___ Discuss-gnuradio mailing

[Discuss-gnuradio] Problem: Accessing RX-B of the basic Rx daughterboard

2008-02-11 Thread Jason Anders
Hi! What command should I use when I want to access the received signals at port RX-B of the Basix Rx daughterboard? I have tried using usrp.source_c(1,my_block) but then an error results saying that I cannot find usrp 1. What I intended with that command was to access RX-B of the BASIC Rx

[Discuss-gnuradio] RE: gr.flow_graph and friends are gone

2008-02-09 Thread Jason Anders
Does this mean we have to upgrade our version of GNU radio? Is there any important bug fixes? Thanks! ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Problem: passing output to gr_vector_sink_c

2008-02-09 Thread Jason Anders
Hi! I have a problem passing outputs from my signal processing block to a gr_vector_sink object that I have created. I implemented my signal processing block using the standard C++ class template called complex. I particularly used the complexfloat type. I was just wondering whether this would

[Discuss-gnuradio] Question: How to read file contents

2008-01-28 Thread Jason Anders
Hi! Since no one has responded to my post regarding my problem on reading a file. I will post another message regarding this. But instead, I'll ask a very basic question. How do you read contents from a file using GNU Radio blocks? I always get an empty list when I try to run the code that I

Re: [Discuss-gnuradio] Question: How to read file contents

2008-01-28 Thread Jason Anders
Hi! Thanks for your reply! Yes, the file contains a string representation of floats. So I suppose that the file should contain a binary representation of floats? And, yes I did start my flow graph. I would like to apologize for not including it in my post. But, rest assured that I ran my flow

Re: [Discuss-gnuradio] Problem: Reading a file

2008-01-28 Thread Jason Anders
Thanks for your replies! It was helpful! :) ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Problem: Reading a file

2008-01-23 Thread Jason Anders
I have a problem reading an ascii file. I tried reading it using gr_file_soucrce and extracted it using gr_vector_sink_f. Then I tried extracting the data by using object.data(); or in short, by using its data member. Unfortunately, I always get an empty list. Why is this so? Here's a snippet of

[Discuss-gnuradio] Question: Possible Problems with SWIG

2008-01-21 Thread Jason Anders
Hi again! I'm trying to implement a signal processing block that makes use of classes that I personally defined. To be exact, I included a class that has the capability to perform Matrix and Complex Algebra (elem_matrix). The source codes compiled well (after following the howto example).

[Discuss-gnuradio] Question: gr_float_to_complex

2008-01-21 Thread Jason Anders
Hi again! I have a question regarding the use of gr_float_to_complex block. Unfortunately, Doxygen didn't show the implementation of such a block. What I wanted to know is how gr_float_to_complex implements float to complex conversion. I could only guess that it treats the first number as the

[Discuss-gnuradio] Re: question on using gr.file_source

2008-01-21 Thread Jason Anders
Hello again! I still have the same problem. Unfortunately, I still can't make gr.vector_sink to work. I mean, how would it know that I just want to extract data from a particular source. Let's say I have these codes: yrx1_real = gr.file_source('arguments omitted') yrx1_imag =

[Discuss-gnuradio] Question: gr_dd_mpsk_sync_cc

2008-01-20 Thread Jason Anders
Hi! I have another question. Can the gr_dd_mpsk_sync_cc block demodulate BPSK? Also, is there anything I should know before using this block (like warnings on what should not be done since it may result in erroneous decoding of the messages)? Thanks!

[Discuss-gnuradio] Question: Array of complex numbers as input

2008-01-19 Thread Jason Anders
Hi again! I am trying to make a signal processing block that uses an array of complex numbers at its input. I was just wondering whether input_items can support this. I was told that the input_items are simply plain old data. So if I cannot pass an array of complex numbers as an input argument,

Re: [Discuss-gnuradio] question on using gr.file_source

2008-01-16 Thread Jason Anders
Thanks! On Jan 14, 2008 11:49 PM, Eric Blossom [EMAIL PROTECTED] wrote: On Mon, Jan 14, 2008 at 05:51:19PM +0800, Jason Anders wrote: Yeah, unfortunately it didn't answer my question. =( What I would've wanted is to superimpose data from two inputs so that they can be combined

Re: [Discuss-gnuradio] question on using gr.file_source

2008-01-14 Thread Jason Anders
have values from both src0 and src1 and whose length is the sum of the lengths of src0 and src1. I would like to know if this is possible. Thanks! On Jan 14, 2008 1:44 AM, Eric Blossom [EMAIL PROTECTED] wrote: On Sun, Jan 13, 2008 at 08:16:03PM +0800, Jason Anders wrote: Hi! I'm quite new

Re: [Discuss-gnuradio] question on using gr.file_source

2008-01-14 Thread Jason Anders
that I want to extract values from the Rx1 stream when I have other input streams? Thanks! On Jan 13, 2008 9:58 PM, Martin Braun [EMAIL PROTECTED] wrote: On Sunday 13 January 2008 13:15:54 Jason Anders wrote: Hi! I', quite new to GNU Radio and I was wondering whether I could access via index

[Discuss-gnuradio] question on using gr.file_source

2008-01-13 Thread Jason Anders
Hi! I'm quite new to GNU Radio and I was wondering whether I could access via index the values obtained after the gr.file_source() command? I mean, could I retrieve contents just as if it were an array? Thanks! ___ Discuss-gnuradio mailing list

[Discuss-gnuradio] question on using gr.file_source

2008-01-13 Thread Jason Anders
Hi! I', quite new to GNU Radio and I was wondering whether I could access via index the values obtained after the gr.file_source() command? I mean, could I retrieve contents just as if it were an array? Thanks! ___ Discuss-gnuradio mailing list