Re: [Discuss-gnuradio] [USRP-users] what is the largest data transfer rate between fpga and overo in e100

2012-05-30 Thread Page Jack
create a custom solution to serve your needs. > > Al > On May 29, 2012 6:17 PM, "Page Jack" wrote: > >> I don't want to using a ethernet wire to connect N series to an ARM >> board. >> anyone have tried >> build N series with ARM or DSP in one

Re: [Discuss-gnuradio] [USRP-users] what is the largest data transfer rate between fpga and overo in e100

2012-05-29 Thread Page Jack
or do the high rate > processing in the FPGA. > > Philip > > > > > > On 5/25/12, Philip Balister wrote: > >> On 05/24/2012 09:46 PM, Page Jack wrote: > >>> Thanks Ben, > >>> does e100 use EMIF to transfer sample data between FPGA a

Re: [Discuss-gnuradio] [USRP-users] what is the largest data transfer rate between fpga and overo in e100

2012-05-25 Thread Page Jack
09:46 PM, Page Jack wrote: >> Thanks Ben, >> does e100 use EMIF to transfer sample data between FPGA and ARM? If so >> the >> data rate should be able to improved. >> Anyone have tried to improve the data rate? > > EMIF is basically identical to GPMC. The interfa

[Discuss-gnuradio] what is the aux dac and aux adc used for in usrp

2012-05-23 Thread Page Jack
Hi all, what is the aux dac and aux adc in ad9862 used for in usrp? Regards ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] how to mix two signal

2011-11-28 Thread Page Jack
Thanks Marcus. On Fri, Nov 25, 2011 at 4:59 PM, Marcus M wrote: > Frequency is irrelevant. If you want to send two signals on the same > medium then you are basically adding them together. > > On Thu, Nov 24, 2011 at 11:47 PM, Page Jack wrote: > >> Hi list, >> I want

[Discuss-gnuradio] how to mix two signal

2011-11-24 Thread Page Jack
Hi list, I want to send two signal which at different frequency. Can I simply add these two signals' sample to generate a new signal which mix the two signal? Regards! ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailm

Re: [Discuss-gnuradio] question about uhd fpga source

2011-09-14 Thread Page Jack
Marcus, thanks for your reply, the different build generate exactly the same binaries which just not the same with the binary in uhd git repo. On Thu, Sep 15, 2011 at 9:37 AM, Marcus D. Leech wrote: > ** > On 14/09/11 09:31 PM, Page Jack wrote: > > Why no one have the answer or h

Re: [Discuss-gnuradio] question about uhd fpga source

2011-09-14 Thread Page Jack
Why no one have the answer or have the same question? On Fri, Aug 12, 2011 at 9:52 AM, Page Jack wrote: > Hi all, > I have some problems when compile the fpga source. > I open uhd-git\fpga\usrp1\toplevel\usrp_std\usrp_std.qpf with quartus II > then compile meet a lot of errors which

[Discuss-gnuradio] is ethernet protocol usrp use reliable to transmit data?

2011-08-16 Thread Page Jack
my USRP N200 sometimes receive data wrong, I don't know where is the problem in my application or in hardware? So I wonder what ethernet protocol does usrp use and is it reliable to transmit data? Regards! ___ Discuss-gnuradio mailing list Discuss-gnurad

Re: [Discuss-gnuradio] xlating filter will introduce phase shift

2011-08-15 Thread Page Jack
Hi Tom, the xlating filter work fine, the phase shift is cause by another factor. Thanks for your reply. On Sun, Aug 14, 2011 at 4:17 AM, Tom Rondeau wrote: > On Fri, Aug 12, 2011 at 3:50 AM, Page Jack wrote: > > I use xlating filter to down convert signal. after I down convert si

[Discuss-gnuradio] xlating filter will introduce phase shift

2011-08-12 Thread Page Jack
I use xlating filter to down convert signal. after I down convert signal it I decode it. however the data decoded is still the signal in 0 frequency before down convert. I check the xlating filter code it will change the signal phase to avoid aliasing, yeah it avoid aliasing but it is not the data

[Discuss-gnuradio] question about uhd fpga source

2011-08-11 Thread Page Jack
Hi all, I have some problems when compile the fpga source. I open uhd-git\fpga\usrp1\toplevel\usrp_std\usrp_std.qpf with quartus II then compile meet a lot of errors which is the path error like that: Error (10054): Verilog HDL File I/O error at rx_buffer.v(25): can't open Verilog Design File "../.

Re: [Discuss-gnuradio] anyone help me understand usrp fpga code fragment which count rssi

2011-08-04 Thread Page Jack
Hi Colby, I know cheaper in hardware, but now I don't understand how using IIR filter can compute the RSSI? On Fri, Aug 5, 2011 at 9:18 AM, Colby Boyer wrote: > Cheaper in hardware. You only need one adder. > > > On Thu, Aug 4, 2011 at 6:13 PM, Page Jack wrote: > >

Re: [Discuss-gnuradio] anyone help me understand usrp fpga code fragment which count rssi

2011-08-04 Thread Page Jack
Hi Colby, I don't understand why compute RSSI need an IIR filter? as I know the rssi can be compute like that: (sample[0]*sample[0]+...sample[i]*sample[i]) / (i+1) Regards! On Thu, Aug 4, 2011 at 2:44 PM, Colby Boyer wrote: > On Wed, Aug 3, 2011 at 6:30 PM, Page Jack wrote: >

[Discuss-gnuradio] anyone help me understand usrp fpga code fragment which count rssi

2011-08-03 Thread Page Jack
the code below is in sdr_lib/rssi.v I don't understand especially this line: rssi_int <= #1 rssi_int + abs_adc - rssi_int[25:10]; wire [11:0] abs_adc = adc[11] ? ~adc : adc; reg [25:0] rssi_int; always @(posedge clock) if(reset | ~enable) rssi_int <= #1 26'd0; else