diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-06-24 22:40:50 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-06-26 14:16:50 -0400 |
commit | e27945c7c25bca5e9dd2e98cee4ba7dce2303e99 (patch) | |
tree | 8e8f93121eec21cdc722f7a7f06b552c5a633d80 /gr-qtgui/lib/sink_c_impl.cc | |
parent | 9bf029234101c53b3982a1322e142af2c1a45023 (diff) |
qtgui: allows toggling rf frequencies on/off in GRC options box.
Addresses Issue #673.
Diffstat (limited to 'gr-qtgui/lib/sink_c_impl.cc')
-rw-r--r-- | gr-qtgui/lib/sink_c_impl.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gr-qtgui/lib/sink_c_impl.cc b/gr-qtgui/lib/sink_c_impl.cc index 992512a999..5d1c33e45e 100644 --- a/gr-qtgui/lib/sink_c_impl.cc +++ b/gr-qtgui/lib/sink_c_impl.cc @@ -218,6 +218,13 @@ namespace gr { d_main_gui->setFrequencyAxis(min, max); } + void + sink_c_impl::enable_rf_freq(bool en) + { + std::cerr << "ENABLE RF: " << en << std::endl; + d_main_gui->enableRFFreq(en); + } + /* void sink_c_impl::set_time_domain_axis(double min, double max) |