From: mleech Date: Sun, 15 Mar 2009 21:29:46 +0000 (+0000) Subject: Fixed bug with BASIC_RX X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e2643f57dd862b22745c6a62daf55c28d8631598;p=debian%2Fgnuradio Fixed bug with BASIC_RX git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10623 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gr-radio-astronomy/src/python/usrp_ra_receiver.py b/gr-radio-astronomy/src/python/usrp_ra_receiver.py index c078cefd..ea9e3cd6 100755 --- a/gr-radio-astronomy/src/python/usrp_ra_receiver.py +++ b/gr-radio-astronomy/src/python/usrp_ra_receiver.py @@ -628,9 +628,9 @@ class app_flow_graph(stdgui2.std_top_block): self.centerfreq = target_freq self.observing -= delta self.scope.set_baseband_freq (self.observing) - - self.myform['baseband'].set_value(r.baseband_freq) - self.myform['ddc'].set_value(r.dxc_freq) + if not self.cardtype == usrp_dbid.BASIC_RX: + self.myform['baseband'].set_value(r.baseband_freq) + self.myform['ddc'].set_value(r.dxc_freq) if (self.use_notches): self.compute_notch_taps(self.notches)