diff options
Diffstat (limited to 'gr-qtgui/lib/sink_f_impl.h')
-rw-r--r-- | gr-qtgui/lib/sink_f_impl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gr-qtgui/lib/sink_f_impl.h b/gr-qtgui/lib/sink_f_impl.h index 68331cc4e6..53494b9ccf 100644 --- a/gr-qtgui/lib/sink_f_impl.h +++ b/gr-qtgui/lib/sink_f_impl.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2008,2009,2011,2012 Free Software Foundation, Inc. + * Copyright 2008,2009,2011,2012,2014 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -65,8 +65,13 @@ namespace gr { void windowreset(); void buildwindow(); void fftresize(); + void check_clicked(); void fft(float *data_out, const float *data_in, int size); + // Handles message input port for setting new center frequency. + // The message is a PMT pair (intern('freq'), double(frequency)). + void handle_set_freq(pmt::pmt_t msg); + public: sink_f_impl(int fftsize, int wintype, double fc, double bw, @@ -93,6 +98,7 @@ namespace gr { void set_frequency_range(const double centerfreq, const double bandwidth); void set_fft_power_db(double min, double max); + void enable_rf_freq(bool en); //void set_time_domain_axis(double min, double max); //void set_constellation_axis(double xmin, double xmax, |