RE: [Discuss-gnuradio] Tune failed with FLEX400 on side B

2008-11-15 Thread Firas Abbas
Hi, > Brian T. Solan wrote: > Do you mean to use the source_c tune method?I mean the 0 in your : r = usrp.tune(self.u, 0, self.subdev, target_freq) is wrong. For side B, it should be 1 or use _which. Regards, Firas ___ Discuss-gnuradio mailing list D

RE: [Discuss-gnuradio] Tune failed with FLEX400 on side B

2008-11-15 Thread Brian T. Solan
Abbas [mailto:[EMAIL PROTECTED] Sent: Sat 11/15/2008 1:39 PM To: discuss-gnuradio@gnu.org; Brian T. Solan Subject: Re: [Discuss-gnuradio] Tune failed with FLEX400 on side B Hi, Use : r = usrp.tune(self.subdev._which, self.subdev, target_freq) instead of : r = usrp.tune(self.u, 0, self.subdev

Re: [Discuss-gnuradio] Tune failed with FLEX400 on side B

2008-11-15 Thread Firas Abbas
Hi, Use : r = usrp.tune(self.subdev._which, self.subdev, target_freq) instead of : r = usrp.tune(self.u, 0, self.subdev, target_freq)     Regards, Firas ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/list

[Discuss-gnuradio] Tune failed with FLEX400 on side B

2008-11-15 Thread Brian T. Solan
I have a new USRP board with FLEX400 MIMO B boards installed on both the A and B daughter card sides. I've created a simple spectrum display python app based on the example apps in gnuradio-examples/python/usrp. The my app works fine if I use the -R option to choose the A side device. However,