diff options
-rwxr-xr-x | gr-utils/src/python/usrp_fft.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gr-utils/src/python/usrp_fft.py b/gr-utils/src/python/usrp_fft.py index bdec44ce5..6ffeb1f03 100755 --- a/gr-utils/src/python/usrp_fft.py +++ b/gr-utils/src/python/usrp_fft.py @@ -75,7 +75,7 @@ class app_top_block(stdgui2.std_top_block): if len(args) != 0: parser.print_help() sys.exit(1) - + self.options = options self.show_debug_info = True # build the graph @@ -233,7 +233,9 @@ class app_top_block(stdgui2.std_top_block): if self.show_debug_info: self.myform['baseband'].set_value(r.baseband_freq) self.myform['ddc'].set_value(r.dxc_freq) - return True + if not self.options.waterfall and not self.options.oscilloscope: + self.scope.set_baseband_freq(target_freq) + return True return False |