Low Pass Filter Example: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
Line 33: Line 33:


[[File:FlowgraphWithZeroCutoffFrequency.png|700px]]
[[File:FlowgraphWithZeroCutoffFrequency.png|700px]]
Double-click the ''Low Pass Filter'' block and edit the properties:
* Cutoff freq: ''samp_rate/4''
* Transition Width: ''samp_rate/8''
[[File:SetLowPassFilterProperties.png|500px]]

Revision as of 22:24, 10 January 2022


This tutorial will describe how to use a low-pass filter in GNU Radio. The previous tutorial can be found here: Creating Your First Block

Creating the Flowgraph

Begin by adding the following blocks to the GRC work space:

  1. Signal Source
  2. Low Pass Filter
  3. Throttle
  4. QT GUI Frequency Sink
  5. QT GUI Range

Connect the blocks in the following manner:

LPFTutorialFlowgraphStart.png

The QT GUI Range block will be used to control the frequency of the Signal Source block. Double-click the QT GUI Range block and edit the properties:

  • Id: frequency
  • Default Value: 0
  • Start: -samp_rate/2
  • Stop: samp_rate/2

SetQTGUIRangeValuesFrequency.png

Click OK to save.

Double-click the Signal Source block and enter frequency from the QT GUI Range variable:

EditSignalSourceFrequency.png

Click OK to save. The flowgraph will look like the following image. Notice that the Low Pass Filter has a Cutoff Freq and Transition Width of 0:

FlowgraphWithZeroCutoffFrequency.png


Double-click the Low Pass Filter block and edit the properties:

  • Cutoff freq: samp_rate/4
  • Transition Width: samp_rate/8

SetLowPassFilterProperties.png