Turned set_bw() back on...
authormleech <mleech@221aa14e-8319-0410-a670-987f0aec2ac5>
Tue, 30 Dec 2008 01:02:55 +0000 (01:02 +0000)
committermleech <mleech@221aa14e-8319-0410-a670-987f0aec2ac5>
Tue, 30 Dec 2008 01:02:55 +0000 (01:02 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10178 221aa14e-8319-0410-a670-987f0aec2ac5

gr-radio-astronomy/src/python/usrp_ra_receiver.py

index a4939070126189d168ab376b9ae1c844df250f07..11dcb54bab4ad707fe71a7e8016dd772c8e54b77 100755 (executable)
@@ -436,8 +436,8 @@ class app_flow_graph(stdgui2.std_top_block):
                        lbw = (self.u.adc_freq() / self.u.decim_rate()) / 2
                        if lbw < 1.0e6:
                                lbw = 1.0e6
-                       #self.subdev[0].set_bw(lbw)
-                       #self.subdev[1].set_bw(lbw)
+                       self.subdev[0].set_bw(lbw)
+                       self.subdev[1].set_bw(lbw)
                        
                # Start the timer for the LMST display and datalogging
                self.lmst_timer.Start(1000)
@@ -1044,7 +1044,7 @@ class app_flow_graph(stdgui2.std_top_block):
                        delfreq = -1
                        if self.use_notches == True:
                                for i in range(0,len(self.notches)):
-                                       if abs(self.notches[i] - dfreq) <= (self.bw/self.NOTCH_TAPS):
+                                       if abs(self.notches[i] - dfreq) < ((self.bw/self.NOTCH_TAPS)/2):
                                                delfreq = i
                                                break
                                j = 0