discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Limited Rx BW on XCVR2450 daugtherboard


From: Matt Ettus
Subject: Re: [Discuss-gnuradio] Limited Rx BW on XCVR2450 daugtherboard
Date: Thu, 26 Nov 2009 11:27:28 -0800
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.4pre) Gecko/20090922 Fedora/3.0-3.9.b4.fc12 Thunderbird/3.0b4


Thanks for finding this bug. I have applied your fix to my git repo. I'm away from any equipment right now, but if someone could confirm that this works, Johnathan can get it in the mainline code.

Matt


On 10/08/2009 01:26 PM, Stephen Lai wrote:
Hi All,

I've been having problems sending a 25 Msym/s BPSK stream between two
USRP2's with XCVR2450 daughterboards. I've tracked it down to the Rx
circuitry limiting the passband to ~14 MHz when at least 20 MHz should
be available.

Sifting through the db_xcvr2450.c/db_xcvr2450.cc files, I think there
may be a bug which causes the baseband LPF in the MAX2829 device to
cutoff at 7.5 MHz instead of 9.5 MHz when the board is configured for Rx.

Referring to "LPF Register" on the MAX2829 datasheet, the old code...

static void
set_reg_lpf(struct db_xcvr2450_dummy *db){
int reg_lpf = (
(db->common->d_rssi_hbw<<15) |
(db->common->d_txlpf_bw<<10) |
(db->common->d_rxlpf_bw<<9) |
(db->common->d_rxlpf_fine<<4) | 7);
send_reg(reg_lpf);
}

...seems like it should read...

static void
set_reg_lpf(struct db_xcvr2450_dummy *db){
int reg_lpf = (
(db->common->d_rssi_hbw<<15) |
(db->common->d_txlpf_bw<<9) |
(db->common->d_rxlpf_bw<<7) |
(db->common->d_rxlpf_fine<<4) | 7);
send_reg(reg_lpf);
}

...to be set correctly.

Has anybody else had problems with this? I'm using
txrx_edk10.1_r11370.bin. I don't have Xilinx/EDK tools installed on my
setup, but if someone is willing to build a load with the fix, I can
test it out.

thanks,
Steve



_______________________________________________
Discuss-gnuradio mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio





reply via email to

[Prev in Thread] Current Thread [Next in Thread]