Provides a GUI interface using the QT backend.
A graphical sink to display freq, spec, time, and const plots.
This is a QT-based graphical sink the takes a complex stream and plots it. The default action is to plot the signal as a PSD (FFT), spectrogram (waterfall), time domain I&Q, and constellation (I vs. Q) plots. The plots may be turned off by setting the appropriate boolean value in the constructor to False.
Message Ports:
Constructor Specific Documentation:
Build a complex qtgui sink.
Parameters: |
|
---|
declare_sample_delay(sink_c_sptr self, unsigned int delay)
pc_input_buffers_full_avg(sink_c_sptr self) -> pmt_vector_float
pc_output_buffers_full_avg(sink_c_sptr self) -> pmt_vector_float
A graphical sink to display freq, spec, and time.
This is a QT-based graphical sink the takes a float stream and plots it. The default action is to plot the signal as a PSD (FFT), spectrogram (waterfall), and time domain plots. The plots may be turned off by setting the appropriate boolean value in the constructor to False.
Message Ports:
Constructor Specific Documentation:
Build a floating point qtgui sink.
Parameters: |
|
---|
declare_sample_delay(sink_f_sptr self, unsigned int delay)
pc_input_buffers_full_avg(sink_f_sptr self) -> pmt_vector_float
pc_output_buffers_full_avg(sink_f_sptr self) -> pmt_vector_float
A graphical sink to display multiple signals in time.
This is a QT-based graphical sink the takes set of a complex streams and plots them in the time domain. For each signal, both the signal’s I and Q parts are plotted, and they are all plotted with a different color, and the and functions can be used to change the lable and color for a given input number.
Constructor Specific Documentation:
Build complex time sink.
Parameters: |
|
---|
declare_sample_delay(time_sink_c_sptr self, unsigned int delay)
pc_input_buffers_full_avg(time_sink_c_sptr self) -> pmt_vector_float
pc_output_buffers_full_avg(time_sink_c_sptr self) -> pmt_vector_float
set_trigger_mode(time_sink_c_sptr self, gr::qtgui::trigger_mode mode, gr::qtgui::trigger_slope slope, float level, float delay, int channel, std::string const & tag_key=””)
Set up a trigger for the sink to know when to start plotting. Useful to isolate events and avoid noise.
The trigger modes are Free, Auto, Normal, and Tag (see gr::qtgui::trigger_mode). The first three are like a normal oscope trigger function. Free means free running with no trigger, auto will trigger if the trigger event is seen, but will still plot otherwise, and normal will hold until the trigger event is observed. The Tag trigger mode allows us to trigger off a specific stream tag. The tag trigger is based only on the name of the tag, so when a tag of the given name is seen, the trigger is activated.
In auto and normal mode, we look for the slope of the of the signal. Given a gr::qtgui::trigger_slope as either Positive or Negative, if the value between two samples moves in the given direction (x[1] > x[0] for Positive or x[1] < x[0] for Negative), then the trigger is activated.
With the complex time sink, each input has two lines drawn for the real and imaginary parts of the signal. When selecting the value, channel 0 is the real signal and channel 1 is the imaginary signal. For more than 1 input stream, channel 2i is the real part of the ith input and channel (2i+1) is the imaginary part of the ith input channel.
The value is specified in time based off the sample rate. If the sample rate of the block is set to 1, the delay is then also the sample number offset. This is the offset from the left-hand y-axis of the plot. It delays the signal to show the trigger event at the given delay along with some portion of the signal before the event. The delay must be within 0 - t_max where t_max is the maximum amount of time displayed on the time plot.
A graphical sink to display multiple signals in time.
This is a QT-based graphical sink the takes set of a float streams and plots them in the time domain. Each signal is plotted with a different color, and the and functions can be used to change the lable and color for a given input number.
Constructor Specific Documentation:
Build floating point time sink.
Parameters: |
|
---|
declare_sample_delay(time_sink_f_sptr self, unsigned int delay)
pc_input_buffers_full_avg(time_sink_f_sptr self) -> pmt_vector_float
pc_output_buffers_full_avg(time_sink_f_sptr self) -> pmt_vector_float
set_trigger_mode(time_sink_f_sptr self, gr::qtgui::trigger_mode mode, gr::qtgui::trigger_slope slope, float level, float delay, int channel, std::string const & tag_key=””)
Set up a trigger for the sink to know when to start plotting. Useful to isolate events and avoid noise.
The trigger modes are Free, Auto, Normal, and Tag (see gr::qtgui::trigger_mode). The first three are like a normal oscope trigger function. Free means free running with no trigger, auto will trigger if the trigger event is seen, but will still plot otherwise, and normal will hold until the trigger event is observed. The Tag trigger mode allows us to trigger off a specific stream tag. The tag trigger is based only on the name of the tag, so when a tag of the given name is seen, the trigger is activated.
In auto and normal mode, we look for the slope of the of the signal. Given a gr::qtgui::trigger_slope as either Positive or Negative, if the value between two samples moves in the given direction (x[1] > x[0] for Positive or x[1] < x[0] for Negative), then the trigger is activated.
The value is specified in time based off the sample rate. If the sample rate of the block is set to 1, the delay is then also the sample number offset. This is the offset from the left-hand y-axis of the plot. It delays the signal to show the trigger event at the given delay along with some portion of the signal before the event. The delay must be within 0 - t_max where t_max is the maximum amount of time displayed on the time plot.